Fix missing resource issue.
When adding "default_repo_priority", it was copy/pasted from "default_repo_pubkey" without changing the name, and so tried to cast the string value into an int and failed.
This commit is contained in:
parent
fa8052611e
commit
94300592d9
@ -215,7 +215,7 @@ public class DBHelper extends SQLiteOpenHelper {
|
||||
"org.fdroid.fdroid"
|
||||
)));
|
||||
values.put("priority", ress.getInteger(ress.getIdentifier(
|
||||
"default_repo_pubkey" + i,
|
||||
"default_repo_priority" + i,
|
||||
"integer",
|
||||
"org.fdroid.fdroid"
|
||||
)));
|
||||
|
Loading…
x
Reference in New Issue
Block a user