Skip to content
This repository was archived by the owner on May 26, 2019. It is now read-only.

Commit db1e47b

Browse files
committed
checkIfBusy method moved to the bottom of index.js
1 parent 058fdd9 commit db1e47b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ const RNCallKitPerformEndCallAction = 'RNCallKitPerformEndCallAction';
1717
const RNCallKitDidActivateAudioSession = 'RNCallKitDidActivateAudioSession';
1818

1919
export default class RNCallKit {
20-
static checkIfBusy = _RNCallKit.checkIfBusy;
21-
2220
static addEventListener(type, handler) {
2321
if (Platform.OS !== 'ios') return;
2422
var listener;
@@ -93,6 +91,8 @@ export default class RNCallKit {
9391
_RNCallKit.endAllCalls();
9492
}
9593

94+
static checkIfBusy = _RNCallKit.checkIfBusy;
95+
9696
/*
9797
static setHeldCall(uuid, onHold) {
9898
if (Platform.OS !== 'ios') return;

0 commit comments

Comments
 (0)