diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2020-03-28 23:14:25 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2020-03-28 23:14:25 -0700 |
commit | 48cc4c85008bb3fa2751c042112467c7e60a96aa (patch) | |
tree | 311e4c1ff88c3df39dfc2c1482a13af0b35bcc94 /python/fatcat_web/entity_helpers.py | |
parent | 4d484c18add7d6ac05a28e9fb0ca01298381ed41 (diff) | |
download | fatcat-48cc4c85008bb3fa2751c042112467c7e60a96aa.tar.gz fatcat-48cc4c85008bb3fa2751c042112467c7e60a96aa.zip |
web: small corrections to subtitle/original_name
Diffstat (limited to 'python/fatcat_web/entity_helpers.py')
-rw-r--r-- | python/fatcat_web/entity_helpers.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/python/fatcat_web/entity_helpers.py b/python/fatcat_web/entity_helpers.py index 7ac0f155..d82ea0e9 100644 --- a/python/fatcat_web/entity_helpers.py +++ b/python/fatcat_web/entity_helpers.py @@ -76,6 +76,8 @@ def enrich_release_entity(entity): if not entity.subtitle and entity.extra and entity.extra.get('subtitle'): if isinstance(entity.extra['subtitle'], str): entity.subtitle = entity.extra['subtitle'] + elif isinstance(entity.extra['subtitle'], list): + entity.subtitle = entity.extra['subtitle'][0] or None # author list to display; ensure it's sorted by index (any othors with # index=None go to end of list) authors = [c for c in entity.contribs if |