1
0
Fork 0
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:
Nikolay Pultsin 2013-04-28 16:23:02 +02:00
parent 0ba4fc22ea
commit a6147ce43d
4 changed files with 7 additions and 3 deletions

View file

@ -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();
}