capacitor-jitsi-meet 6.2.0 → 6.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -22,7 +22,7 @@ import timber.log.Timber;
22
22
  import org.jitsi.meet.sdk.*;
23
23
  import org.json.JSONException;
24
24
 
25
- import static android.content.Context.RECEIVER_NOT_EXPORTED;
25
+ import static android.content.Context.RECEIVER_EXPORTED;
26
26
 
27
27
  @CapacitorPlugin(
28
28
  name= "Jitsi",
@@ -65,7 +65,7 @@ public class Jitsi extends Plugin {
65
65
  filter.addAction("onParticipantsInfoRetrieved");
66
66
 
67
67
  if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
68
- getContext().registerReceiver(receiver, filter, RECEIVER_NOT_EXPORTED);
68
+ getContext().registerReceiver(receiver, filter, RECEIVER_EXPORTED);
69
69
  } else {
70
70
  getContext().registerReceiver(receiver, filter);
71
71
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "capacitor-jitsi-meet",
3
- "version": "6.2.0",
3
+ "version": "6.2.1",
4
4
  "description": "This Ionic Capacitor plugin is created to make video calls through the free, open-sourced Jitsi video platform (https://meet.jit.si) on iOS and Android.",
5
5
  "main": "dist/esm/index.js",
6
6
  "module": "dist/esm/index.js",