[docs,cleanup] Fix linter and misc cleanup

Closes #2419
This commit is contained in:
pukkandan 2022-01-24 01:21:39 +05:30
parent bb66c24797
commit 88f23a18e0
No known key found for this signature in database
GPG key ID: 0F00D95A001F4698
10 changed files with 16 additions and 12 deletions

View file

@ -220,7 +220,7 @@ def sanitize_got_info_dict(got_dict):
IGNORED_PREFIXES = ('', 'playlist', 'requested', 'webpage')
def sanitize(key, value):
if isinstance(value, str) and len(value) > 100:
if isinstance(value, str) and len(value) > 100 and key != 'thumbnail':
return f'md5:{md5(value)}'
elif isinstance(value, list) and len(value) > 10:
return f'count:{len(value)}'