mirror of
https://github.com/geometer/FBReaderJ.git
synced 2025-10-04 18:29:23 +02:00
fixed book/position forgetting
This commit is contained in:
parent
3a6c9bee7c
commit
016297dadd
2 changed files with 2 additions and 1 deletions
|
@ -1,4 +1,5 @@
|
||||||
===== 0.99.13 (??? ??, 2011) =====
|
===== 0.99.13 (??? ??, 2011) =====
|
||||||
|
* Fixed book/position forgetting bug
|
||||||
* Color channel values in color dialog
|
* Color channel values in color dialog
|
||||||
* Fixed categories processing in feedbooks feed
|
* Fixed categories processing in feedbooks feed
|
||||||
|
|
||||||
|
|
|
@ -520,7 +520,7 @@ public final class SQLiteBooksDatabase extends BooksDatabase {
|
||||||
if (id == -1) {
|
if (id == -1) {
|
||||||
if (myInsertFileInfoStatement == null) {
|
if (myInsertFileInfoStatement == null) {
|
||||||
myInsertFileInfoStatement = myDatabase.compileStatement(
|
myInsertFileInfoStatement = myDatabase.compileStatement(
|
||||||
"INSERT OR REPLACE INTO Files (name,parent_id,size) VALUES (?,?,?)"
|
"INSERT OR IGNORE INTO Files (name,parent_id,size) VALUES (?,?,?)"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
statement = myInsertFileInfoStatement;
|
statement = myInsertFileInfoStatement;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue