Merge pull request #6 from kyori19/fix-notification

Fix notification crashes caused by unknown notification type
This commit is contained in:
Gregory K 2022-04-14 03:47:44 +03:00 committed by GitHub
commit 801dc9c842
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -195,6 +195,9 @@ public class CacheController{
db.delete(table, null, null);
ContentValues values=new ContentValues(3);
for(Notification n:notifications){
if(n.type==null){
continue;
}
values.put("id", n.id);
values.put("json", MastodonAPIController.gson.toJson(n));
values.put("type", n.type.ordinal());