mirror of
https://github.com/onionshare/onionshare.git
synced 2025-01-11 04:02:40 -03:00
Merge branch 'fix_stay_open' of https://github.com/mig5/onionshare into mig5-fix_stay_open
This commit is contained in:
commit
e626a410f3
1 changed files with 3 additions and 1 deletions
|
@ -221,7 +221,6 @@ class OnionShareGui(QtWidgets.QMainWindow):
|
||||||
settings = Settings()
|
settings = Settings()
|
||||||
settings.load()
|
settings.load()
|
||||||
self.app.set_stealth(settings.get('use_stealth'))
|
self.app.set_stealth(settings.get('use_stealth'))
|
||||||
web.set_stay_open(not settings.get('close_after_first_download'))
|
|
||||||
|
|
||||||
# Reset web counters
|
# Reset web counters
|
||||||
web.download_count = 0
|
web.download_count = 0
|
||||||
|
@ -239,6 +238,9 @@ class OnionShareGui(QtWidgets.QMainWindow):
|
||||||
return
|
return
|
||||||
|
|
||||||
# start onionshare http service in new thread
|
# start onionshare http service in new thread
|
||||||
|
# First, load settings and configure
|
||||||
|
self.app.stay_open = not self.settings.get('close_after_first_download')
|
||||||
|
common.log('OnionShareGUI', 'stay_open', 'stay_open={}'.format(self.app.stay_open))
|
||||||
t = threading.Thread(target=web.start, args=(self.app.port, self.app.stay_open))
|
t = threading.Thread(target=web.start, args=(self.app.port, self.app.stay_open))
|
||||||
t.daemon = True
|
t.daemon = True
|
||||||
t.start()
|
t.start()
|
||||||
|
|
Loading…
Reference in a new issue