mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 744644 - Mark migration as finished if there is no database. r=lucasr
This commit is contained in:
parent
11c5a98566
commit
93d1e8d16b
@ -801,6 +801,9 @@ public class ProfileMigrator {
|
||||
File dbFile = new File(dbPath);
|
||||
if (!dbFile.exists()) {
|
||||
Log.i(LOGTAG, "No database");
|
||||
// Nothing to do, so mark as done.
|
||||
setMigratedBookmarks();
|
||||
setMigratedHistory();
|
||||
return;
|
||||
}
|
||||
File dbFileWal = new File(dbPathWal);
|
||||
|
Loading…
Reference in New Issue
Block a user