From 7e868d35dd7ea9e7aea7cccb8a619a21eaa9eda0 Mon Sep 17 00:00:00 2001 From: Hanadi92 Date: Sat, 20 Jan 2024 22:12:12 +0100 Subject: [PATCH] fix: use i32 instead of i64 Signed-off-by: Hanadi92 --- src/background_updates/status/v1.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/background_updates/status/v1.rs b/src/background_updates/status/v1.rs index 2f313cf..fc8668b 100644 --- a/src/background_updates/status/v1.rs +++ b/src/background_updates/status/v1.rs @@ -33,7 +33,7 @@ pub struct CurrentUpdate { pub name: String, /// Total number of processed "items" - pub total_item_count: i64, + pub total_item_count: i32, /// Runtime of background process, not including sleeping time pub total_duration_ms: f64,