Skip to content

Commit

Permalink
FIX: Missing log
Browse files Browse the repository at this point in the history
  • Loading branch information
jclough96 authored Oct 8, 2019
1 parent 280fd29 commit 8f0a3ab
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class JsIOHelper {
public boolean sendEventToJS(String eventName, Bundle data, ReactContext reactContext) {
if (reactContext != null) {
if (!data.toString().contains("com.facebook.login.LoginClient") && !data.toString().contains("https://m.facebook.com/v4.0/dialog/oauth/confirm/") && !data.toString().contains("https://m.facebook.com/v3.3/dialog/oauth/confirm/")) {
Log.e("DATA", data.toString());
Log.i("ReactNativeNotifs", data.toString());
sendEventToJS(eventName, Arguments.fromBundle(data), reactContext);
return true;
}
Expand Down

0 comments on commit 8f0a3ab

Please sign in to comment.