Send changes_available() even if autorefresh is enabled

This commit is contained in:
Thomas Goyne 2015-09-10 13:49:50 -07:00 committed by Ari Lazier
parent 16065f65ad
commit ae4f9ac30c
1 changed files with 3 additions and 3 deletions

View File

@ -319,6 +319,9 @@ void Realm::notify()
verify_thread();
if (m_shared_group->has_changed()) { // Throws
if (m_delegate) {
m_delegate->changes_available();
}
if (m_auto_refresh) {
if (m_group) {
transaction::advance(*m_shared_group, *m_history, m_delegate.get());
@ -327,9 +330,6 @@ void Realm::notify()
m_delegate->did_change({}, {});
}
}
else if (m_delegate) {
m_delegate->changes_available();
}
}
}