Read-only Realm should be opened even in immutable directory Realm files in an app bundle should be opened if marked as read-only

This commit is contained in:
kishikawa katsumi 2015-11-25 00:39:13 +09:00 committed by Thomas Goyne
parent 415bfe4d35
commit 0bae415718
1 changed files with 7 additions and 3 deletions

View File

@ -158,11 +158,15 @@ SharedRealm Realm::get_shared_realm(Config config)
// FIXME - need to validate that schemas match
realm->m_config.schema = std::make_unique<Schema>(*existing->m_config.schema);
realm->m_notifier = existing->m_notifier;
realm->m_notifier->add_realm(realm.get());
if (!realm->m_config.read_only) {
realm->m_notifier = existing->m_notifier;
realm->m_notifier->add_realm(realm.get());
}
}
else {
realm->m_notifier = std::make_shared<ExternalCommitHelper>(realm.get());
if (!realm->m_config.read_only) {
realm->m_notifier = std::make_shared<ExternalCommitHelper>(realm.get());
}
// otherwise get the schema from the group
realm->m_config.schema = std::make_unique<Schema>(ObjectStore::schema_from_group(realm->read_group()));