Skip to content

Commit

Permalink
Fix link timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
F33RNI committed Mar 11, 2023
1 parent 4d72540 commit 078912c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion BrowserHandler.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,8 @@ def handler_loop(self):

# Check if timed out
timed_out = False
if time_passed > int(self.settings['gui_max_event_time_milliseconds']) > 0:
if self.settings['gui_max_event_time_enabled'] and \
time_passed > int(self.settings['gui_max_event_time_milliseconds']) > 0:
logging.info('Timeout!')
timed_out = True

Expand Down
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
import LectureBuilder
import VideoAudioReader

WEBINAR_HACKER_VERSION = 'beta_4.0.0'
WEBINAR_HACKER_VERSION = 'beta_4.0.1'
WEBINAR_HACKER_VERSION_CHECK_URL = 'https://api.github.com/repos/F33RNI/Webinar-Hacker/releases/latest'
WEBINAR_HACKER_URL = 'https://github.com/F33RNI/Webinar-hacker'

Expand Down

0 comments on commit 078912c

Please sign in to comment.