mirror of
https://github.com/fergalmoran/chrometophone.git
synced 2025-12-22 09:41:51 +00:00
Bug fix
This commit is contained in:
@@ -59,7 +59,8 @@ public class HistoryDatabase {
|
||||
}
|
||||
|
||||
public Cursor lookupHistory() {
|
||||
return mDb.query(TABLE_NAME, ALL_COLUMNS, null, null, null, null, null);
|
||||
return mDb.query(TABLE_NAME, ALL_COLUMNS, null, null, null, null,
|
||||
RECEIVE_TIME_COL_NAME + " desc");
|
||||
}
|
||||
|
||||
public void deleteHistory(String url) {
|
||||
|
||||
Reference in New Issue
Block a user