Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Fix opening a sync realm that is already open elsewhere #1594

Merged
merged 1 commit into from Sep 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion RELEASENOTES.md
Expand Up @@ -6,7 +6,7 @@

### Fixed

- None
- Fixed an issue where opening a synchronized Realm that is open in another process would result in an error with a message `History type not consistent`. ([#1593](https://github.com/realm/realm-studio/issues/1593))
elle-j marked this conversation as resolved.
Show resolved Hide resolved

### Internals

Expand Down
1 change: 1 addition & 0 deletions src/ui/reusable/RealmLoadingComponent/index.tsx
Expand Up @@ -122,6 +122,7 @@ export abstract class RealmLoadingComponent<
if (
error instanceof Error &&
(error.message.includes('Incompatible histories.') ||
error.message.includes('History type not consistent') ||
error.message.startsWith(
'History type (as specified by the Replication implementation passed to the DB constructor) was not consistent across the session',
) ||
Expand Down