mirror of
https://github.com/geometer/FBReaderJ.git
synced 2025-10-04 02:09:35 +02:00
series index representation fixed: 10 instead of 1E+1
This commit is contained in:
parent
0ba4fc22ea
commit
a6147ce43d
4 changed files with 7 additions and 3 deletions
|
@ -607,7 +607,7 @@ final class SQLiteBooksDatabase extends BooksDatabase {
|
|||
myInsertBookSeriesStatement.bindLong(2, seriesId);
|
||||
SQLiteUtil.bindString(
|
||||
myInsertBookSeriesStatement, 3,
|
||||
seriesInfo.Index != null ? seriesInfo.Index.toString() : null
|
||||
seriesInfo.Index != null ? seriesInfo.Index.toPlainString() : null
|
||||
);
|
||||
myInsertBookSeriesStatement.execute();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue