mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-04-20 00:29:11 +01:00
Add story boolean to envelope proto.
This commit is contained in:
committed by
Cody Henthorne
parent
9e094dfc2b
commit
9dd96148d1
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user