Fixed: Release group will not contain file extension

This commit is contained in:
Mark McDowall 2013-12-25 23:16:13 -08:00
commit b29efa5823
3 changed files with 11 additions and 2 deletions

View file

@ -16,13 +16,11 @@ namespace NzbDrone.Api.Authentication
private readonly IConfigFileProvider _configFileProvider;
private static readonly NzbDroneUser AnonymousUser = new NzbDroneUser { UserName = "Anonymous" };
public AuthenticationService(IConfigFileProvider configFileProvider)
{
_configFileProvider = configFileProvider;
}
public IUserIdentity Validate(string username, string password)
{
if (!Enabled)