diff --git a/qml/models/BookmarksModel.qml b/qml/models/BookmarksModel.qml index 094fafe..ca38271 100644 --- a/qml/models/BookmarksModel.qml +++ b/qml/models/BookmarksModel.qml @@ -37,10 +37,8 @@ ListModel { { console.log("Initializing Bookmarks Table with fresh data") tx.executeSql('INSERT INTO bookmarks VALUES (?,?);', ["Duck Duck Go", "https://duckduckgo.com/"]) - tx.executeSql('INSERT INTO bookmarks VALUES (?,?);', ["Google News", "https://news.google.com/"]) - tx.executeSql('INSERT INTO bookmarks VALUES (?,?);', ["Jolla Together", "https://together.jolla.com/"]) + tx.executeSql('INSERT INTO bookmarks VALUES (?,?);', ["Jolla Together", "https://together.jolla.com/questions/"]) tx.executeSql('INSERT INTO bookmarks VALUES (?,?);', ["Maemo forum", "https://talk.maemo.org/"]) - tx.executeSql('INSERT INTO bookmarks VALUES (?,?);', ["Jolla Tides", "http://www.jollatides.com/"]) } }) }