1
0

fix: do not catch exception in revealer plugin

exceptions thrown inside `create_noise_file()` were catched and
couldn't reach the `CrashReporter`.
This commit is contained in:
f321x
2025-07-05 14:10:01 +02:00
parent 7e98d2fe92
commit 9495aabc8c

View File

@@ -191,12 +191,8 @@ class Plugin(RevealerPlugin):
# Define the create noise file function.
def create_noise_file():
try:
self.make_digital(self.d)
except Exception:
self.logger.exception('')
else:
self.cypherseed_dialog(window)
self.make_digital(self.d)
self.cypherseed_dialog(window)
# Handle clicks on the buttons.
create_button.clicked.connect(create_noise_file)