mirror of
https://github.com/oxen-io/session-android.git
synced 2025-12-26 21:07:11 +00: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