Skip to content

Commit

Permalink
修复UID路径错误
Browse files Browse the repository at this point in the history
  • Loading branch information
TheRamU committed Nov 12, 2022
1 parent cd8c009 commit 42d2e93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/viewer.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def __start(self):
self.live_driver.get(self.url)
self.user_driver = webdriver.Chrome(config_util.system_chrome_driver, options=self.chrome_options)
self.__wait_live_start()
self.user_sec_uid = self.__get_render_data(self.live_driver)['initialState']['roomStore']['roomInfo']['room']['owner']['sec_uid']
self.user_sec_uid = self.__get_render_data(self.live_driver)['app']['initialState']['roomStore']['roomInfo']['room']['owner']['sec_uid']
MyThread(target=self.__live_state_runnable).start()
MyThread(target=self.__join_runnable).start()
MyThread(target=self.__interact_runnable).start()
Expand Down

0 comments on commit 42d2e93

Please sign in to comment.