Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/dea58ed6635e5c5639d06c62fb60cbe9a19d38c9 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed: Changed sqlite to use full fsync on osx to reduce the chance of corruption at the cost of some performance.

pull/4/head
Taloth Saldono 10 years ago
parent 1837ba94cc
commit dea58ed663

@ -32,6 +32,11 @@ namespace NzbDrone.Core.Datastore
connectionBuilder.JournalMode = OsInfo.IsOsx ? SQLiteJournalModeEnum.Truncate : SQLiteJournalModeEnum.Wal;
connectionBuilder.Pooling = true;
connectionBuilder.Version = 3;
if (OsInfo.IsOsx)
{
connectionBuilder.Add("Full FSync", true);
}
return connectionBuilder.ConnectionString;
}

Loading…
Cancel
Save