Skip to content

Commit

Permalink
BUGFIX: save xrefer analysis to disk after artifact analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
m-umairx committed Dec 30, 2024
1 parent 5dee21f commit a403f3e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion plugins/xrefer/core/action_handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,9 @@ def activate(self, ctx: Any) -> bool:
try:
idaapi.show_wait_box(f'HIDECANCEL\n')
log("Running artifact analysis...")
plugin_instance.xrefer_view.xrefer_obj.find_interesting_artifacts()
xrefer_obj = plugin_instance.xrefer_view.xrefer_obj
xrefer_obj.find_interesting_artifacts()
xrefer_obj.save_analysis()

# Force view update
current_state = plugin_instance.xrefer_view.state_machine.current_state
Expand Down

0 comments on commit a403f3e

Please sign in to comment.