mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-11-09 18:06:35 +00:00
Merge pull request #1053 from oddstr13/fix-734-1
Split and index in a way that gracefully falls back to no split
This commit is contained in:
commit
888044b852
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