Synchronize Reader Search adapter #10386
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fixes #9987
This fix is more of a shot in the dark. We have been seeing this
ChangeObserver is already registered.
exception for the last couple of years and we haven't been able to find steps how to reproduce it.I gathered recent crashes
And one reoccurring Track event is "reader_search_loaded". I believe this is the line on which the app is crashing
WordPress-Android/WordPress/src/main/java/org/wordpress/android/ui/reader/adapters/ReaderSearchSuggestionAdapter.java
Line 71 in ac56c49
I wasn't able to find any other reasonable explanation what is causing the issue other than multiple threads are trying to update the cursor or
mCurrentFilter
at the same time. I decided to synchronize the methods which are changingmCurrentFilter
or the Cursor. I believe it can't hurt us and there is a chance it might fix the issue.To test:
Update release notes: