fixed problems with tent.is and campr.me authentifications
This commit is contained in:
parent
a1e3816d0f
commit
ce3a42dbee
3 changed files with 19 additions and 4 deletions
|
@ -15,6 +15,10 @@ class Bungloo:
|
|||
|
||||
def __init__(self):
|
||||
|
||||
sslConfig = QtNetwork.QSslConfiguration.defaultConfiguration()
|
||||
sslConfig.setProtocol(QtNetwork.QSsl.TlsV1)
|
||||
QtNetwork.QSslConfiguration.setDefaultConfiguration(sslConfig)
|
||||
|
||||
self.app = QtGui.QApplication(sys.argv)
|
||||
self.new_message_windows = []
|
||||
self.controller = Controller(self)
|
||||
|
|
Reference in a new issue