Hilighting compound scripts, Search results exception fix

This commit is contained in:
Jindra Petřík
2023-09-30 20:32:46 +02:00
parent d5de31973e
commit f90c8f5bfe
4 changed files with 54 additions and 17 deletions

View File

@@ -342,7 +342,7 @@ public class SearchResultsStorage {
public void destroySwf(SWF swf) {
String swfId = getOpenableId(swf);
for (int i = 0; i < openableIds.size(); i++) {
if (openableIds.get(i).equals(swfId)) {
if (openableIds.get(i).equals(swfId) && unpackedData.size() > i) {
unpackedData.set(i, null);
}
}