Browse Source

Merge pull request #123 from onpageideas/master

fix. android event remoteAudioStateChange
matrixbirds 4 years ago
parent
commit
0484530585
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      android/src/main/java/com/syan/agora/AgoraModule.java

+ 1
- 1
android/src/main/java/com/syan/agora/AgoraModule.java View File

664
                     WritableMap map = Arguments.createMap();
664
                     WritableMap map = Arguments.createMap();
665
                     map.putInt("uid", uid);
665
                     map.putInt("uid", uid);
666
                     map.putInt("state", state);
666
                     map.putInt("state", state);
667
-                    map.putInt("uid", reason);
667
+                    map.putInt("reason", reason);
668
                     map.putInt("elapsed", elapsed);
668
                     map.putInt("elapsed", elapsed);
669
                     sendEvent(getReactApplicationContext(), AGRemoteAudioStateChanged, map);
669
                     sendEvent(getReactApplicationContext(), AGRemoteAudioStateChanged, map);
670
                 }
670
                 }