Add story boolean to envelope proto.

This commit is contained in:
Alex Hart
2022-09-20 16:04:08 -03:00
committed by Cody Henthorne
parent 9e094dfc2b
commit 9dd96148d1
6 changed files with 34 additions and 11 deletions

View File

@@ -92,7 +92,8 @@ public class PushDatabase extends Database {
cursor.getLong(cursor.getColumnIndexOrThrow(SERVER_DELIVERED_TIMESTAMP)),
cursor.getString(cursor.getColumnIndexOrThrow(SERVER_GUID)),
"",
true);
true,
false);
}
} catch (IOException e) {
Log.w(TAG, e);
@@ -173,7 +174,8 @@ public class PushDatabase extends Database {
serverDeliveredTimestamp,
serverGuid,
"",
true);
true,
false);
} catch (IOException e) {
throw new AssertionError(e);
}