Fixed when we do not have a base

This commit is contained in:
tidusjar 2016-04-14 21:29:32 +01:00
commit f01f230901

View file

@ -103,7 +103,7 @@ namespace PlexRequests.UI.Helpers
private static string GetContentUrl(string assetLocation)
{
return string.IsNullOrEmpty(assetLocation) ? "~" : $"/{assetLocation}";
return string.IsNullOrEmpty(assetLocation) ? string.Empty : $"/{assetLocation}";
}
}
}