Skip to content

Commit

Permalink
Fix file-based persistence for challenges. (#14)
Browse files Browse the repository at this point in the history
The `AddFluffySpoonLetsEncryptFileChallengePersistence()` extension accidentally stored the challenge in the cert file, rather than a challenge file. 

Fixes #7
  • Loading branch information
chgeuer authored and ffMathy committed Nov 4, 2019
1 parent 52462c6 commit dfb8412
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public static void AddFluffySpoonLetsEncryptFileChallengePersistence(
this IServiceCollection services,
string relativeFilePath = "FluffySpoonAspNetLetsEncryptChallenge")
{
AddFluffySpoonLetsEncryptCertificatePersistence(services,
AddFluffySpoonLetsEncryptChallengePersistence(services,
new FilePersistenceStrategy(relativeFilePath));
}

Expand Down

0 comments on commit dfb8412

Please sign in to comment.