Roobiq / RBQFetchedResultsController

Drop-in replacement for NSFetchedResultsController backed by Realm.
MIT License
477 stars 70 forks source link

Fixed a crash when deleting objects after deleting a section. #117

Closed anlaital closed 7 years ago

anlaital commented 7 years ago

This fixes the crash reported in #116.

The old implementation only removed the deleted section from the cached RLMArray instead of deleting it from the cached Realm, which in turn also removes it from the RLMArray.

bigfish24 commented 7 years ago

Nice find! 👍