fix user message time

This commit is contained in:
Milos Kozak 2020-07-20 13:28:07 +02:00
parent 35a2692d25
commit 05eee2ebb9

View file

@ -6,6 +6,7 @@ class NotificationUserMessage (text :String): Notification() {
var hash = text.hashCode()
if (hash < USERMESSAGE) hash += USERMESSAGE
id = hash
date = System.currentTimeMillis()
this.text = text
level = URGENT
}