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

Update PlayToManager.cs

pull/4084/head
BaronGreenback 5 years ago committed by GitHub
parent d4004bcaf5
commit ed9021f40b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -130,20 +130,20 @@ namespace Emby.Dlna.PlayTo
}
}
private string GetUuid(string usn)
private static string GetUuid(string usn)
{
var found = false;
var index = usn.IndexOf("uuid:", StringComparison.OrdinalIgnoreCase);
if (index != -1)
{
usn = usn.Substring(index);
usn = usn.Substring(index + 5);
found = true;
}
index = usn.IndexOf("::", StringComparison.OrdinalIgnoreCase);
if (index != -1)
{
usn = usn.Substring(0, index);
usn = usn.Substring(0, index + 2);
}
if (found)

Loading…
Cancel
Save