Skip to content

Commit

Permalink
Fix order of columns
Browse files Browse the repository at this point in the history
  • Loading branch information
markwinter committed Mar 27, 2014
1 parent 7ea848d commit 243873e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/main/java/im/tox/antox/data/AntoxDB.java
Original file line number Diff line number Diff line change
Expand Up @@ -251,8 +251,8 @@ public ArrayList<Friend> getFriendList() {
String key = cursor.getString(1);
String status = cursor.getString(3);
String note = cursor.getString(4);
String alias = cursor.getString(6);
int online = cursor.getInt(5);
String alias = cursor.getString(5);
int online = cursor.getInt(6);

if(alias == null)
alias = "";
Expand Down

0 comments on commit 243873e

Please sign in to comment.