Change summary
src/main/java/eu/siacs/conversations/ui/StartConversationActivity.java | 3
1 file changed, 2 insertions(+), 1 deletion(-)
Detailed changes
@@ -390,7 +390,8 @@ public class StartConversationActivity extends XmppActivity
} else if(intent.hasExtra(EXTRA_ACCOUNT_FILTER)) {
pendingViewIntent.push(intent);
setIntent(intent);
- } else if (isViewIntent(intent)) {
+ }
+ if (isViewIntent(intent) && pendingViewIntent.peek() == null) {
pendingViewIntent.push(intent);
createdByViewIntent = true;
setIntent(createLauncherIntent(this));