mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-21 05:43:19 -07:00
Fixed when we do not have a base
This commit is contained in:
parent
acb9aab369
commit
f01f230901
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue