Fixed: #2511 Allowing to jump from search window while editation causing problems

Changed: Serial form of AS3 search results changed so the decompiler is unable to read
saved AS3 search result from older versions and vice-versa
This commit is contained in:
Jindra Petřík
2025-08-14 09:23:58 +02:00
parent 33d6f9f300
commit 4dbdc09278
4 changed files with 26 additions and 6 deletions

View File

@@ -176,13 +176,12 @@ public class SearchResultsStorage {
if (kind == DATA_ACTION) {
currentResults.add(new ActionSearchResult((SWF) openable, bais));
}
} catch (ScriptNotFoundException | IOException ex) {
ex.printStackTrace();
} catch (ScriptNotFoundException ex) {
//ignore
}
}
} catch (IOException ex) {
Logger.getLogger(SearchResultsStorage.class.getName()).log(Level.SEVERE, null, ex);
//ignore
}
unpackedData.set(j, currentResults);
result.addAll(currentResults);