Skip to content

Commit

Permalink
Modification : ordre articles en mode hors ligne
Browse files Browse the repository at this point in the history
Modification suite au ticket #74
  • Loading branch information
barbogogo committed Jan 6, 2014
1 parent c062380 commit b7da3ed
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion LeedReader/src/com/barbogogo/leedreader/LocalData.java
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,8 @@ public Flux getArticlesByFeed(Flux feed)

Cursor cursor =
database.query(true, MySQLiteHelper.ARTI_TABLE, extractColumns,
MySQLiteHelper.ARTI_COL_IDFEED + "=?", args, null, null, null, null);
MySQLiteHelper.ARTI_COL_IDFEED + "=?", args, null, null,
MySQLiteHelper.ARTI_COL_IDFEED + " DESC", null);

cursor.moveToFirst();
while (!cursor.isAfterLast())
Expand Down

0 comments on commit b7da3ed

Please sign in to comment.