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

Learn how DllImport works before making changes

pull/7495/head
Cody Robibero 3 years ago
parent 4fa7f49ffc
commit ac33adf219

@ -687,10 +687,12 @@ namespace Jellyfin.Server
if (!string.IsNullOrEmpty(socketPerms))
{
#pragma warning disable SA1300 // Entrypoint is case sensitive.
[DllImport("libc")]
static extern int Chmod(string pathname, int mode);
static extern int chmod(string pathname, int mode);
#pragma warning restore SA1300
var exitCode = Chmod(socketPath, Convert.ToInt32(socketPerms, 8));
var exitCode = chmod(socketPath, Convert.ToInt32(socketPerms, 8));
if (exitCode < 0)
{

Loading…
Cancel
Save