mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-11-09 18:06:35 +00:00
Split and index in a way that gracefully falls back to no split
Fixes #734
This commit is contained in:
parent
246bf65323
commit
4ad56c9ee0
1 changed files with 1 additions and 1 deletions
|
|
@ -44,7 +44,7 @@ class LogHandler(logging.StreamHandler):
|
|||
self.sensitive["Token"].append(server["AccessToken"])
|
||||
|
||||
if server.get("address"):
|
||||
self.sensitive["Server"].append(server["address"].split("://")[1])
|
||||
self.sensitive["Server"].append(server["address"].split("://", 1)[-1])
|
||||
|
||||
self.mask_info = settings("maskInfo.bool")
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue