Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/51e11eb3e3c52896f12075c6a53e1bdbf14f6059?style=unified&whitespace=show-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

Only run ffprobe on local content

pull/702/head
Eric Reed 12 years ago
parent a3d37fbca7
commit 51e11eb3e3

@ -85,6 +85,11 @@ namespace MediaBrowser.Controller.Providers.MediaInfo
/// <returns><c>true</c> if XXXX, <c>false</c> otherwise</returns>
public override bool Supports(BaseItem item)
{
if (item.LocationType != LocationType.FileSystem)
{
return false;
}
var video = item as Video;
if (video != null)

Loading…
Cancel
Save