Skip to content

Commit dbd3b59

Browse files
committed
bak
1 parent e1df4a3 commit dbd3b59

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

lib/event_processor/queueing_event_processor.react_native.ts renamed to lib/event_processor/batch_event_processor.react_native.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,19 @@ class ReactNativeNetInfoEventProcessor extends BatchEventProcessor {
2222

2323
if (!this.isInternetReachable && state.isInternetReachable) {
2424
this.isInternetReachable = true;
25-
await this.retryFailedEvents()
25+
this.retryFailedEvents();
2626
}
2727
}
2828

2929
start(): void {
30-
this.unsubscribeNetInfo = addConnectionListener(this.connectionListener.bind(this))
31-
super.start()
30+
super.start();
31+
this.unsubscribeNetInfo = addConnectionListener(this.connectionListener.bind(this));
3232
}
3333

3434
stop(): void {
3535
if (this.unsubscribeNetInfo) {
36-
this.unsubscribeNetInfo()
36+
this.unsubscribeNetInfo();
3737
}
38-
super.stop()
38+
super.stop();
3939
}
4040
}

0 commit comments

Comments
 (0)