From f7a7c95fc0e4ceeca03cf384476eca6a3a3ba405 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Fri, 31 Jul 2020 09:58:06 +1000 Subject: [PATCH] fix early reviews not appearing in graph https://forums.ankiweb.net/t/differences-between-new-and-old-stats-2-1-28/1602 --- proto/backend.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proto/backend.proto b/proto/backend.proto index 7c23a4a74..51f2089b3 100644 --- a/proto/backend.proto +++ b/proto/backend.proto @@ -1004,7 +1004,7 @@ message RevlogEntry { LEARNING = 0; REVIEW = 1; RELEARNING = 2; - EARLY_REVIEW = 4; + EARLY_REVIEW = 3; } int64 id = 1; int64 cid = 2;