mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-08 06:00:51 -07:00
Skip blank custom fields
This commit is contained in:
parent
27c5061d17
commit
acebf96d2f
1 changed files with 2 additions and 0 deletions
|
@ -1471,6 +1471,8 @@ class Export(object):
|
||||||
|
|
||||||
for field in self.custom_fields.split(','):
|
for field in self.custom_fields.split(','):
|
||||||
field = field.strip()
|
field = field.strip()
|
||||||
|
if not field:
|
||||||
|
continue
|
||||||
|
|
||||||
media_type = self.media_type
|
media_type = self.media_type
|
||||||
for key in self.CUSTOM_FIELD_KEYS:
|
for key in self.CUSTOM_FIELD_KEYS:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue