Browse Source

android: fix not calling super in onNewIntent

master
Saúl Ibarra Corretgé 6 years ago
parent
commit
3e77890387

+ 2
- 0
android/sdk/src/main/java/org/jitsi/meet/sdk/JitsiMeetActivity.java View File

@@ -155,6 +155,8 @@ public class JitsiMeetActivity extends FragmentActivity
155 155
 
156 156
     @Override
157 157
     public void onNewIntent(Intent intent) {
158
+        super.onNewIntent(intent);
159
+
158 160
         JitsiMeetConferenceOptions options;
159 161
 
160 162
         if ((options = getConferenceOptions(intent)) != null) {

Loading…
Cancel
Save