fix moviedb find by external id

This commit is contained in:
Luke Pulverenti
2017-05-08 13:15:26 -04:00
parent a4e4b13b02
commit 59d3b8853d
2 changed files with 6 additions and 1 deletions

View File

@@ -45,6 +45,11 @@ namespace MediaBrowser.MediaEncoding.Encoder
/// <returns>System.String.</returns>
private static string GetFileInputArgument(string path)
{
if (path.IndexOf("://") != -1)
{
return string.Format("\"{0}\"", path);
}
// Quotes are valid path characters in linux and they need to be escaped here with a leading \
path = NormalizePath(path);