Skip to content

Commit

Permalink
Minor fix in sessions
Browse files Browse the repository at this point in the history
  • Loading branch information
esantamariavazquez committed Oct 10, 2024
1 parent 964988a commit 73aacaf
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/gui/apps_panel/apps_panel.py
Original file line number Diff line number Diff line change
Expand Up @@ -627,9 +627,10 @@ def on_play_session_app_power(self, run):
ex, importance='critical', scope='app')
app_settings_mdl = importlib.import_module(
self.get_app_module(current_app_key, 'settings'))
if run['settings'] is not None:
self.app_settings = app_settings_mdl.Settings.from_serializable_obj(
run['settings']['settings'])
sett = run['settings']['settings']
if sett is not None:
self.app_settings = \
app_settings_mdl.Settings.from_serializable_obj(sett)
# App power
self.app_power()

Expand Down

0 comments on commit 73aacaf

Please sign in to comment.