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

Commit b023d89b authored by korelstar's avatar korelstar Committed by Niedermann IT-Dienstleistungen
Browse files

notes order: favorites first

parent a1ffa20d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -50,7 +50,7 @@ public class NoteSQLiteOpenHelper extends SQLiteOpenHelper {
    private static final String key_category = "CATEGORY";
    private static final String key_etag = "ETAG";
    private static final String[] columns = {key_id, key_remote_id, key_status, key_title, key_modified, key_content, key_favorite, key_category, key_etag};
    private static final String default_order = key_modified + " DESC";
    private static final String default_order = key_favorite + " DESC, " + key_modified + " DESC";

    private static NoteSQLiteOpenHelper instance;