Add comment that explains why 0 is used

Co-authored-by: Stypox <stypox@pm.me>
This commit is contained in:
litetex 2022-05-04 19:19:45 +02:00 committed by GitHub
parent e40e86500b
commit c2a3c1cb8f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ public class StreamHistoryEntity {
@Ignore
public StreamHistoryEntity(final long streamUid, @NonNull final OffsetDateTime accessDate) {
this(streamUid, accessDate, 0);
this(streamUid, accessDate, 0); // start with 0 views (adding views will be done elsewhere)
}
public long getStreamUid() {