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

update sqlite sync mode

pull/702/head
Luke Pulverenti 12 years ago
parent 8d97d34d10
commit 734f08f56d

@ -176,7 +176,7 @@ namespace MediaBrowser.Server.Implementations.Persistence
{
PageSize = 4096,
CacheSize = 4096,
SyncMode = SynchronizationModes.Off,
SyncMode = SynchronizationModes.Normal,
DataSource = dbPath,
JournalMode = SQLiteJournalModeEnum.Wal
};

@ -386,7 +386,8 @@ namespace MediaBrowser.ServerApplication
PageSize = 4096,
CacheSize = 4096,
SyncMode = SynchronizationModes.Normal,
DataSource = dbPath
DataSource = dbPath,
JournalMode = SQLiteJournalModeEnum.Wal
};
var connection = new SQLiteConnection(connectionstr.ConnectionString);

Loading…
Cancel
Save