Skip to content

Commit

Permalink
Fix check for GUI page upload
Browse files Browse the repository at this point in the history
  • Loading branch information
NeonDaniel committed Sep 28, 2023
1 parent f1511e0 commit af46fec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ovos_gui/namespace.py
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ def handle_gui_pages_available(self, message: Message):
GUI framework.
@param message: `gui.volunteer_page_upload` message
"""
if not self.gui_file_path and not self.gui_file_server:
if not any((self.gui_file_host_path, self.gui_file_server)):
LOG.debug("No GUI file server running or host path configured")
return

Expand Down

0 comments on commit af46fec

Please sign in to comment.