Changed basic auth prompt to Sonarr

This commit is contained in:
Mark McDowall 2014-11-25 07:33:06 -08:00
parent 70f07845fd
commit d78e55a4d1
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ namespace NzbDrone.Api.Authentication
public void Register(IPipelines pipelines)
{
pipelines.EnableBasicAuthentication(new BasicAuthenticationConfiguration(_authenticationService, "NzbDrone"));
pipelines.EnableBasicAuthentication(new BasicAuthenticationConfiguration(_authenticationService, "Sonarr"));
pipelines.BeforeRequest.AddItemToEndOfPipeline(RequiresAuthentication);
}