Fixed thread navigation from recent apps

pull/185/head
M66B 4 years ago
parent 595a83a090
commit 0ca6dd2e56

@ -606,7 +606,9 @@ public class ActivityView extends ActivityBilling implements FragmentManager.OnB
@Override
protected void onNewIntent(Intent intent) {
super.onNewIntent(intent);
Intent clone = new Intent(intent);
clone.setAction(null);
super.onNewIntent(clone);
setIntent(intent);
}

Loading…
Cancel
Save