From d6e253fe7f616ef037cc9f12268800485abce349 Mon Sep 17 00:00:00 2001 From: Ly-sec Date: Sun, 7 Sep 2025 16:25:11 +0200 Subject: [PATCH] Replace some double with real --- Commons/Settings.qml | 2 +- Services/GitHubService.qml | 2 +- Services/NotificationService.qml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Commons/Settings.qml b/Commons/Settings.qml index b595323..38356da 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 2523a50..99dc283 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 608048e..f30269f 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 } }