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

PlayTo SupportedStaticFormats setting

pull/702/head
7illusions 11 years ago
parent e985e81e84
commit 13674ac716

@ -13,12 +13,14 @@ namespace MediaBrowser.Dlna.PlayTo.Configuration
private set;
}
private static readonly string[] _supportedStaticFormats = { "mp3", "flac", "m4a", "wma", "avi", "mp4", "mkv", "ts" };
[XmlIgnore]
public string[] SupportedStaticFormats
{
get
{
return new[] { "mp3", "flac", "m4a", "wma", "avi", "mp4", "mkv" };
return _supportedStaticFormats;
}
}

Loading…
Cancel
Save