mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-05-03 07:01:05 +01:00
Add GroupId for received messages.
// FREEBIE
This commit is contained in:
@@ -206,7 +206,9 @@ public class DatabaseUpgradeActivity extends BaseActivity {
|
||||
while ((pushReader != null && pushReader.moveToNext())) {
|
||||
ApplicationContext.getInstance(getApplicationContext())
|
||||
.getJobManager()
|
||||
.add(new PushDecryptJob(getApplicationContext(), pushReader.getLong(pushReader.getColumnIndexOrThrow(PushDatabase.ID))));
|
||||
.add(new PushDecryptJob(getApplicationContext(),
|
||||
pushReader.getLong(pushReader.getColumnIndexOrThrow(PushDatabase.ID)),
|
||||
pushReader.getString(pushReader.getColumnIndexOrThrow(PushDatabase.SOURCE))));
|
||||
}
|
||||
} finally {
|
||||
if (pushReader != null)
|
||||
|
||||
Reference in New Issue
Block a user