mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Verify disk scan won't scan if root folder doesn't exist
This commit is contained in:
@@ -168,9 +168,9 @@ namespace NzbDrone.Core.Configuration
|
||||
{
|
||||
get
|
||||
{
|
||||
var urlBase = GetValue("UrlBase", "");
|
||||
var urlBase = GetValue("UrlBase", "").Trim('/');
|
||||
|
||||
if (String.IsNullOrEmpty(urlBase))
|
||||
if (urlBase.IsNullOrWhiteSpace())
|
||||
{
|
||||
return urlBase;
|
||||
}
|
||||
|
Reference in New Issue
Block a user