mirror of
https://github.com/tnodir/fort
synced 2024-11-15 05:46:03 +00:00
UI: ConfManager: Minor fix
This commit is contained in:
parent
5f197a7d59
commit
e0f6840731
@ -204,9 +204,11 @@ bool migrateFunc(SqliteDb *db, int version, bool isNewDb, void *ctx)
|
||||
if (isNewDb)
|
||||
return true;
|
||||
|
||||
// COMPAT: Zones
|
||||
if (version == 6) {
|
||||
switch (version) {
|
||||
case 6: {
|
||||
// COMPAT: Zones
|
||||
db->execute("UPDATE task SET name = 'ZoneDownloader' WHERE name = 'Tasix';");
|
||||
} break;
|
||||
}
|
||||
|
||||
return true;
|
||||
|
Loading…
Reference in New Issue
Block a user