Fix potential edge case unseen messages

This commit is contained in:
M66B
2019-09-22 13:51:52 +02:00
parent f84100d9e1
commit f44b5a7815
2 changed files with 12 additions and 11 deletions

View File

@@ -25,8 +25,8 @@ import androidx.annotation.Nullable;
import java.util.Objects;
public class TupleMessageStats {
public Integer unseen;
public Integer ignored;
public Integer unseen = 0;
public Integer ignored = 0;
@Override
public boolean equals(@Nullable Object obj) {