From 58e44591944091ce855c762ca08dfafc55627dc0 Mon Sep 17 00:00:00 2001 From: user1823 <92206575+user1823@users.noreply.github.com> Date: Fri, 26 Sep 2025 20:59:29 +0530 Subject: [PATCH] Update last_interval field type in stats.proto --- proto/anki/stats.proto | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/proto/anki/stats.proto b/proto/anki/stats.proto index 43263ec0f..1bd0fe630 100644 --- a/proto/anki/stats.proto +++ b/proto/anki/stats.proto @@ -37,7 +37,8 @@ message CardStatsResponse { uint32 ease = 5; float taken_secs = 6; optional cards.FsrsMemoryState memory_state = 7; - int64 last_interval = 8; + // seconds + uint32 last_interval = 8; } repeated StatsRevlogEntry revlog = 1; int64 card_id = 2;