mirror of
https://github.com/onionshare/onionshare.git
synced 2025-07-28 09:04:26 -04:00
Rename close_after_seconds class to ShutdownTimer
This commit is contained in:
parent
2e6538b7f8
commit
49e352d131
3 changed files with 5 additions and 3 deletions
|
@ -24,6 +24,7 @@ import queue
|
|||
from PyQt5 import QtCore, QtWidgets, QtGui
|
||||
|
||||
from onionshare import strings, common
|
||||
from onionshare.common import ShutdownTimer
|
||||
from onionshare.settings import Settings
|
||||
from onionshare.onion import *
|
||||
|
||||
|
@ -468,7 +469,7 @@ class OnionShareGui(QtWidgets.QMainWindow):
|
|||
self.timeout = now.secsTo(self.server_status.timeout)
|
||||
# Set the shutdown timeout value
|
||||
if self.timeout > 0:
|
||||
self.app.shutdown_timer = common.close_after_seconds(self.timeout)
|
||||
self.app.shutdown_timer = ShutdownTimer(self.timeout)
|
||||
self.app.shutdown_timer.start()
|
||||
# The timeout has actually already passed since the user clicked Start. Probably the Onion service took too long to start.
|
||||
else:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue