better dates for notifications

This commit is contained in:
Dusko Angirevic 2017-06-14 16:57:44 +02:00
parent b59fe852c7
commit b00cd81d21
2 changed files with 4 additions and 4 deletions

View file

@ -83,9 +83,7 @@ function parseNotification(data){
//console.log(JSON.stringify(data))
var item = {
id: data.id,
type: data.type,
created_at: new Date(data.created_at),
section: new Date(data["created_at"]).toLocaleDateString()
type: data.type
};
switch (item['type']){
case "mention":
@ -124,6 +122,8 @@ function parseNotification(data){
}
item['id'] = data.id
item['created_at'] = new Date(data.created_at)
item['section'] = new Date(data["created_at"]).toLocaleDateString()
//WorkerScript.sendMessage({ 'fireNotification': true, "data": item})

View file

@ -57,7 +57,7 @@ BackgroundItem {
width: Theme.iconSizeSmall
height: width
smooth: true
source: reblog_account_avatar
source: typeof reblog_account_avatar !== "undefined" ? reblog_account_avatar : ''
visible: typeof status_reblog !== "undefined" && status_reblog
}
}