Release 0.2.2

This commit is contained in:
len
2016-06-06 14:43:02 +02:00
parent d1db2d60ec
commit 11262f86f9
4 changed files with 35 additions and 4 deletions

View File

@ -36,6 +36,10 @@ class DbOpenHelper(context: Context)
override fun onUpgrade(db: SQLiteDatabase, oldVersion: Int, newVersion: Int) {
if (oldVersion < 2) {
db.execSQL(ChapterTable.sourceOrderUpdateQuery)
// Fix kissmanga covers after supporting cloudflare
db.execSQL("""UPDATE mangas SET thumbnail_url =
REPLACE(thumbnail_url, '93.174.95.110', 'kissmanga.com') WHERE source = 4""")
}
}