Skip to content
Snippets Groups Projects
Commit 4917cf3b authored by akwizgran's avatar akwizgran
Browse files

Don't create a second GroupActivity after configuring group.

parent 2165b265
No related branches found
No related tags found
No related merge requests found
package org.briarproject.android.groups;
import static android.content.Intent.FLAG_ACTIVITY_CLEAR_TOP;
import static android.view.Gravity.CENTER_HORIZONTAL;
import static android.view.View.GONE;
import static android.view.View.VISIBLE;
......@@ -222,6 +223,7 @@ SelectContactsDialog.Listener {
public void run() {
Intent i = new Intent(ConfigureGroupActivity.this,
GroupActivity.class);
i.setFlags(FLAG_ACTIVITY_CLEAR_TOP);
i.putExtra("briar.GROUP_ID", groupId.getBytes());
i.putExtra("briar.GROUP_NAME", groupName);
startActivity(i);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment