Fixed when we do not have a base

pull/158/head
tidusjar 9 years ago
parent acb9aab369
commit f01f230901

@ -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}";
}
}
}
Loading…
Cancel
Save