From f01f230901cab2943d13ed5e8a2253d7562b8099 Mon Sep 17 00:00:00 2001 From: tidusjar Date: Thu, 14 Apr 2016 21:29:32 +0100 Subject: [PATCH] Fixed when we do not have a base --- PlexRequests.UI/Helpers/AssetHelper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PlexRequests.UI/Helpers/AssetHelper.cs b/PlexRequests.UI/Helpers/AssetHelper.cs index 20cd8a8d6..5e06fc7e7 100644 --- a/PlexRequests.UI/Helpers/AssetHelper.cs +++ b/PlexRequests.UI/Helpers/AssetHelper.cs @@ -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}"; } } } \ No newline at end of file