Fixed: API Exception Error format

This commit is contained in:
Qstick 2019-04-11 21:58:02 -04:00
parent 117a3970e8
commit 600a5b194f
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
using System;
using System;
using Nancy;
using Nancy.Responses;
using Lidarr.Http.ErrorManagement;
@ -30,10 +30,10 @@ namespace Lidarr.Http.Exceptions
if (content != null)
{
result = result + " :" + content;
result = $"{result}: {content}";
}
return result;
}
}
}
}