Correct SQLite typo in DB.getRepo

This commit is contained in:
Andrew Gaul 2013-05-23 22:14:25 -07:00
parent 2834a8966e
commit 50ffaa4ea9

View File

@ -1029,7 +1029,7 @@ public class DB {
public Repo getRepo(int id) {
Cursor c = null;
try {
c = db.query(TABLE_REPO, new String[] { "address, inuse",
c = db.query(TABLE_REPO, new String[] { "address", "inuse",
"priority", "pubkey", "lastetag" },
"id = " + Integer.toString(id), null, null, null, null);
if (!c.moveToFirst())