Skip to content

Commit

Permalink
Merge pull request #22 from ozbek/master
Browse files Browse the repository at this point in the history
Fix f/c when "Date Added" is selected in bookmarks
  • Loading branch information
ahmedre committed Dec 19, 2015
2 parents 290561c + 3daf823 commit 291669f
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,7 @@ public List<Bookmark> getBookmarks(int sortOrder, Integer pageFilter) {
break;
case SORT_DATE_ADDED:
default:
orderBy = BookmarksTable.ADDED_DATE + " DESC";
break;
orderBy = BookmarksTable.TABLE_NAME + "." + BookmarksTable.ADDED_DATE + " DESC";
}

List<Bookmark> bookmarks = null;
Expand Down

0 comments on commit 291669f

Please sign in to comment.