Skip to content

Commit

Permalink
Add Встреча завершена to webinar handler
Browse files Browse the repository at this point in the history
  • Loading branch information
F33RNI committed Mar 1, 2023
1 parent 18ef090 commit 801ad98
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion WebinarHandler.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,8 @@ def handler_loop(self):
# Finished, timed out or closed
if browser_closed or timed_out or \
'AfterMeetingScreenContent' in self.browser.page_source or \
'event_stopped' in self.browser.page_source:
'event_stopped' in self.browser.page_source or \
'Встреча завершена' in self.browser.page_source:
logging.warning('Event finished, timed out or browser closed! Closing browser...')
if self.browser is not None:
self.stop_browser_and_recording.emit()
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 VideoAudioReader
import WebinarHandler

WEBINAR_HACKER_VERSION = 'beta_3.0.1'
WEBINAR_HACKER_VERSION = 'beta_3.0.2'
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 801ad98

Please sign in to comment.