We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1df4a3 commit dbd3b59Copy full SHA for dbd3b59
lib/event_processor/queueing_event_processor.react_native.ts renamed to lib/event_processor/batch_event_processor.react_native.ts
@@ -22,19 +22,19 @@ class ReactNativeNetInfoEventProcessor extends BatchEventProcessor {
22
23
if (!this.isInternetReachable && state.isInternetReachable) {
24
this.isInternetReachable = true;
25
- await this.retryFailedEvents()
+ this.retryFailedEvents();
26
}
27
28
29
start(): void {
30
- this.unsubscribeNetInfo = addConnectionListener(this.connectionListener.bind(this))
31
- super.start()
+ super.start();
+ this.unsubscribeNetInfo = addConnectionListener(this.connectionListener.bind(this));
32
33
34
stop(): void {
35
if (this.unsubscribeNetInfo) {
36
- this.unsubscribeNetInfo()
+ this.unsubscribeNetInfo();
37
38
- super.stop()
+ super.stop();
39
40
0 commit comments