diff --git a/oml/item/models.py b/oml/item/models.py index e5dcfe4..c0c373f 100644 --- a/oml/item/models.py +++ b/oml/item/models.py @@ -749,7 +749,7 @@ class File(db.Model): author = 'Unknown Author' if ' (Ed.)' in author: author = author.replace(' (Ed.)', '') + ' (Ed.)' - if len(author) > 255: + if len(author) > 200: author = 'Various Authors' title = j.get('title', 'Untitled') extension = j['extension']