Skip to content
This repository has been archived by the owner on Feb 2, 2021. It is now read-only.

Commit

Permalink
Make fix to Pleroma notifications not depend on Mastodon.py fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jfmcbrayer committed Jan 28, 2019
1 parent e4bbd29 commit 5072def
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion brutaldon/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def _notes_count(account, mastodon):
if account.note_seen is None:
account.note_seen = "0"
account.save()
if item.id <= account.note_seen:
if str(item.id) <= str(account.note_seen):
break
else:
index = "40+"
Expand Down

0 comments on commit 5072def

Please sign in to comment.