Skip to content

Commit c9a30e7

Browse files
committed
fix: return expected value types of w3c flags
1 parent 8590e94 commit c9a30e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

android/src/main/java/com/instabug/reactlibrary/RNInstabugReactnativeModule.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1225,7 +1225,7 @@ public void run() {
12251225
}
12261226
catch (Exception e) {
12271227
e.printStackTrace();
1228-
promise.resolve(null);
1228+
promise.resolve(false);
12291229
}
12301230

12311231
}
@@ -1247,7 +1247,7 @@ public void run() {
12471247
}
12481248
catch (Exception e) {
12491249
e.printStackTrace();
1250-
promise.resolve(null);
1250+
promise.resolve(false);
12511251
}
12521252

12531253
}

0 commit comments

Comments
 (0)