1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2026-04-29 18:21:23 +00:00

Merge pull request #8336 from Mamadou78130/fix8330

Fixed viewed counting
This commit is contained in:
litetex
2022-05-04 19:33:36 +02:00
committed by GitHub

View File

@@ -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); // start with 0 views (adding views will be done elsewhere)
}
public long getStreamUid() {