Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3b16892c authored by Ken Shirriff's avatar Ken Shirriff
Browse files

Fix ExtendedProperties EntityIterator.

The iterator was using the wrong cursor.

bug 2399618
parent e5651d67
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -744,9 +744,10 @@ public final class Calendar {
                try {
                    while (subCursor.moveToNext()) {
                        ContentValues extendedValues = new ContentValues();
                        extendedValues.put(ExtendedProperties.NAME, cursor.getString(COLUMN_NAME));
                        extendedValues.put(ExtendedProperties.NAME,
                                subCursor.getString(COLUMN_NAME));
                        extendedValues.put(ExtendedProperties.VALUE,
                                cursor.getString(COLUMN_VALUE));
                                subCursor.getString(COLUMN_VALUE));
                        entity.addSubValue(ExtendedProperties.CONTENT_URI, extendedValues);
                    }
                } finally {