Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

react-native: fix previous sessions not being cleared #306

Merged
merged 2 commits into from
Oct 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -39,7 +39,7 @@ public WritableArray readDirSync(String path) {

WritableArray array = new WritableNativeArray();
for (File directoryFile : file.listFiles()) {
array.pushString(directoryFile.getPath());
array.pushString(directoryFile.getName());
}

return array;
3 changes: 1 addition & 2 deletions packages/react-native/src/BacktraceClient.ts
Original file line number Diff line number Diff line change
@@ -82,9 +82,8 @@ export class BacktraceClient extends BacktraceCoreClient<BacktraceConfiguration>
);

this.initializeNativeCrashReporter();
} catch (err) {
} finally {
lockId && this.sessionFiles?.unlockPreviousSessions(lockId);
throw err;
}
}