Fix crash by truncating notification titles

This commit is contained in:
rubenwardy 2019-08-31 18:38:15 +01:00
parent 96b22744ec
commit 655ed2255a
1 changed files with 3 additions and 0 deletions

View File

@ -213,6 +213,9 @@ class Notification(db.Model):
url = db.Column(db.String(200), nullable=True)
def __init__(self, us, cau, titl, ur):
if len(titl) > 100:
title = title[:99] + ""
self.user = us
self.causer = cau
self.title = titl