Show conversations by thread ID

This commit is contained in:
M66B
2018-10-17 09:15:44 +00:00
parent 52b23befe6
commit 8901221548
6 changed files with 31 additions and 40 deletions

View File

@@ -409,8 +409,9 @@ public class ServiceSynchronize extends LifecycleService {
args.putLong("id", message.id);
Intent thread = new Intent(this, ActivityView.class);
thread.setAction("thread:" + message.id);
thread.setAction("thread:" + message.thread);
thread.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
thread.putExtra("account", message.account);
PendingIntent piContent = PendingIntent.getActivity(
this, ActivityView.REQUEST_THREAD, thread, PendingIntent.FLAG_UPDATE_CURRENT);