Merge branch 'master' into crash-fix

This commit is contained in:
molan-git 2020-04-27 16:53:48 +02:00 committed by GitHub
parent 7a41f2cca1
commit 220deae6d5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -150,8 +150,8 @@ function parseNotification(data){
switch (item['type']){
case "mention":
if (!data.status) {
break;
}
break;
}
item = parseToot(data.status)
item['typeIcon'] = "image://theme/icon-s-retweet"
@ -160,8 +160,8 @@ function parseNotification(data){
break;
case "reblog":
if (!data.status) {
break;
}
break;
}
item = parseToot(data.status)
item = parseAccounts(item, "reblog_", data["account"])