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

update chmod for ffmpeg

pull/702/head
Luke Pulverenti 10 years ago
parent d292ab28c5
commit 6f59f6cd92

@ -244,7 +244,7 @@ namespace MediaBrowser.Server.Startup.Common.FFMpeg
// Linux: File permission to 666, and user's execute bit
if (_environment.OperatingSystem == OperatingSystem.Bsd || _environment.OperatingSystem == OperatingSystem.Linux || _environment.OperatingSystem == OperatingSystem.Osx)
{
Syscall.chmod(path, FilePermissions.DEFFILEMODE | FilePermissions.S_IXUSR);
Syscall.chmod(path, FilePermissions.DEFFILEMODE | FilePermissions.S_IRWXU | FilePermissions.S_IXGRP | FilePermissions.S_IXOTH);
}
}

Loading…
Cancel
Save