From 50ffaa4ea92b506ab68b175ed568a8a78e2bf432 Mon Sep 17 00:00:00 2001 From: Andrew Gaul Date: Thu, 23 May 2013 22:14:25 -0700 Subject: [PATCH] Correct SQLite typo in DB.getRepo --- src/org/fdroid/fdroid/DB.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/org/fdroid/fdroid/DB.java b/src/org/fdroid/fdroid/DB.java index fe1498a3a..8e8f37909 100644 --- a/src/org/fdroid/fdroid/DB.java +++ b/src/org/fdroid/fdroid/DB.java @@ -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())