Fix travel last modified
This commit is contained in:
parent
03dc11febe
commit
aab2e7d3a2
1 changed files with 4 additions and 3 deletions
|
@ -508,14 +508,15 @@ public class TravelLocalDataHelper {
|
|||
BOOKMARKS_COL_ROUTE_ID + " = ?, " +
|
||||
BOOKMARKS_COL_CONTENT_JSON + " = ?, " +
|
||||
BOOKMARKS_COL_CONTENT + " = ?, " +
|
||||
BOOKMARKS_COL_LAST_MODIFIED + " = ?, " +
|
||||
BOOKMARKS_COL_LAST_MODIFIED + " = ? " +
|
||||
"WHERE " + BOOKMARKS_COL_ARTICLE_TITLE + " = ? " +
|
||||
" AND " + BOOKMARKS_COL_ROUTE_ID + " = ?" +
|
||||
" AND " + BOOKMARKS_COL_LANG + " = ?" +
|
||||
" AND " + BOOKMARKS_COL_TRAVEL_BOOK + " = ?",
|
||||
new Object[]{newArticle.title, newArticle.lang, newArticle.aggregatedPartOf,
|
||||
newArticle.imageTitle, travelBook, newArticle.lat, newArticle.lon,
|
||||
newArticle.routeId, newArticle.content, newArticle.contentsJson,
|
||||
newArticle.imageTitle, newArticle.getTravelBook(context), newArticle.lat,
|
||||
newArticle.lon, newArticle.routeId, newArticle.contentsJson, newArticle.content,
|
||||
newArticle.getLastModified(),
|
||||
odlArticle.title, odlArticle.routeId, odlArticle.lang, travelBook});
|
||||
|
||||
} finally {
|
||||
|
|
Loading…
Reference in a new issue