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

Split ffprobe output on CRLF or LF.

pull/702/head
Seth Hinze 10 years ago
parent b3bdb3b21d
commit 4dc5d901b6

@ -353,7 +353,7 @@ namespace MediaBrowser.MediaEncoding.Encoder
{
var text = await reader.ReadToEndAsync().ConfigureAwait(false);
var lines = StringHelper.RegexSplit(text, "\r\n");
var lines = StringHelper.RegexSplit(text, "[\r\n]+");
foreach (var line in lines)
{
if (string.IsNullOrWhiteSpace(line))

Loading…
Cancel
Save