mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-17 21:25:39 -04:00
Fixed: Adding an invalid root folder will show a usable error message
This commit is contained in:
@@ -1,4 +1,7 @@
|
||||
using System.Collections.Generic;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using FluentValidation;
|
||||
using FluentValidation.Results;
|
||||
using NzbDrone.Core.Messaging.Commands;
|
||||
using NzbDrone.Core.RootFolders;
|
||||
using NzbDrone.Api.Mapping;
|
||||
@@ -30,7 +33,15 @@ namespace NzbDrone.Api.RootFolders
|
||||
|
||||
private int CreateRootFolder(RootFolderResource rootFolderResource)
|
||||
{
|
||||
return GetNewId<RootFolder>(_rootFolderService.Add, rootFolderResource);
|
||||
try
|
||||
{
|
||||
return GetNewId<RootFolder>(_rootFolderService.Add, rootFolderResource);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
throw new ValidationException(new [] { new ValidationFailure("Path", ex.Message) });
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
private List<RootFolderResource> GetRootFolders()
|
||||
|
||||
Reference in New Issue
Block a user