diff --git a/Commons/Settings.qml b/Commons/Settings.qml index b5953234..38356dad 100644 --- a/Commons/Settings.qml +++ b/Commons/Settings.qml @@ -300,7 +300,7 @@ Singleton { property bool doNotDisturb: false property list monitors: [] // Last time the user opened the notification history (ms since epoch) - property double lastSeenTs: 0 + property real lastSeenTs: 0 } // audio diff --git a/Services/GitHubService.qml b/Services/GitHubService.qml index 2523a508..99dc2839 100644 --- a/Services/GitHubService.qml +++ b/Services/GitHubService.qml @@ -45,7 +45,7 @@ Singleton { property string version: "Unknown" property var contributors: [] - property double timestamp: 0 + property real timestamp: 0 } } diff --git a/Services/NotificationService.qml b/Services/NotificationService.qml index 608048e7..f30269f5 100644 --- a/Services/NotificationService.qml +++ b/Services/NotificationService.qml @@ -80,7 +80,7 @@ Singleton { JsonAdapter { id: historyAdapter property var history: [] - property double timestamp: 0 + property real timestamp: 0 } }