mirror of
https://github.com/9001/copyparty.git
synced 2026-04-12 23:32:32 -06:00
catch the server-hdd phasing out of existence (and equally unexpected stuff)
This commit is contained in:
parent
fb5384f412
commit
d1517d0c65
|
|
@ -22,7 +22,7 @@ from .__init__ import TYPE_CHECKING, EnvParams
|
||||||
from .authsrv import AuthSrv # typechk
|
from .authsrv import AuthSrv # typechk
|
||||||
from .httpcli import HttpCli
|
from .httpcli import HttpCli
|
||||||
from .u2idx import U2idx
|
from .u2idx import U2idx
|
||||||
from .util import HMaccas, NetMap, shut_socket
|
from .util import HMaccas, NetMap, min_ex, shut_socket
|
||||||
|
|
||||||
if True: # pylint: disable=using-constant-test
|
if True: # pylint: disable=using-constant-test
|
||||||
from typing import Optional, Pattern, Union
|
from typing import Optional, Pattern, Union
|
||||||
|
|
@ -194,12 +194,12 @@ class HttpConn(object):
|
||||||
except Exception as ex:
|
except Exception as ex:
|
||||||
em = str(ex)
|
em = str(ex)
|
||||||
|
|
||||||
if "ALERT_CERTIFICATE_UNKNOWN" in em:
|
if "ALERT_" in em:
|
||||||
# android-chrome keeps doing this
|
self.log("client refused our TLS cert or config: " + em, c=6)
|
||||||
pass
|
|
||||||
|
|
||||||
else:
|
else:
|
||||||
self.log("handshake\033[0m " + em, c=5)
|
t = "https-handshake failed, probably due to client:\n"
|
||||||
|
self.log(t + min_ex(), c=5)
|
||||||
|
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue