mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-20 13:23:20 -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)
|
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