From e40e86500b7058ec2ff2b214aa365b1f4db60a62 Mon Sep 17 00:00:00 2001 From: Mamadou WAGUE Date: Mon, 2 May 2022 14:52:43 +0200 Subject: [PATCH] Fixed viewed counting --- .../newpipe/database/history/model/StreamHistoryEntity.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/org/schabi/newpipe/database/history/model/StreamHistoryEntity.java b/app/src/main/java/org/schabi/newpipe/database/history/model/StreamHistoryEntity.java index ad1941adb..712ee4047 100644 --- a/app/src/main/java/org/schabi/newpipe/database/history/model/StreamHistoryEntity.java +++ b/app/src/main/java/org/schabi/newpipe/database/history/model/StreamHistoryEntity.java @@ -51,7 +51,7 @@ public class StreamHistoryEntity { @Ignore public StreamHistoryEntity(final long streamUid, @NonNull final OffsetDateTime accessDate) { - this(streamUid, accessDate, 1); + this(streamUid, accessDate, 0); } public long getStreamUid() {