don't close the cursor if it's the same that is in the parameters

pull/606/head
Brice-W 4 years ago
parent de45ec584d
commit 9af804ec21

@ -28,7 +28,7 @@ public class MediaPreviewViewModel extends ViewModel {
public void setCursor(@NonNull Context context, @Nullable Cursor cursor, boolean leftIsRecent) {
boolean firstLoad = (this.cursor == null) && (cursor != null);
if (this.cursor != null) {
if (this.cursor != null && !this.cursor.equals(cursor)) {
this.cursor.close();
}
this.cursor = cursor;

Loading…
Cancel
Save