Merge pull request #73 from cyisfor/last_seen_index_error

random exception when viewing notifications
This commit is contained in:
GCU Prosthetic Conscience 2020-06-01 10:36:23 -04:00 committed by GitHub
commit 9a99f34945
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 3 deletions

View File

@ -605,9 +605,12 @@ def note(request, next=None, prev=None):
account, mastodon = get_usercontext(request)
except NotLoggedInException:
return redirect(about)
last_seen = mastodon.notifications(limit=1)[0]
account.note_seen = last_seen.id
account.save()
try:
last_seen = mastodon.notifications(limit=1)[0]
except IndexError: pass
else:
account.note_seen = last_seen.id
account.save()
notes = mastodon.notifications(limit=40, max_id=next, min_id=prev)
filters = get_filters(mastodon, context="notifications")