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

use default transcode temp path when configure one is unreachable

pull/1154/head
Luke Pulverenti 8 years ago
parent fc9de2589c
commit 74136371b5

@ -44,7 +44,7 @@ namespace Emby.Server.Implementations.LiveTv.TunerHosts
EnableStreamSharing = true;
SharedStreamIds = new List<string>();
UniqueId = Guid.NewGuid().ToString("N");
TempFilePath = Path.Combine(appPaths.TranscodingTempPath, UniqueId + ".ts");
TempFilePath = Path.Combine(appPaths.GetTranscodingTempPath(), UniqueId + ".ts");
}
public virtual Task Open(CancellationToken openCancellationToken)

Loading…
Cancel
Save