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

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());