diff options
author | Guillaume Lacasa <guillaumelacasa@hotmail.com> | 2016-06-29 12:59:03 +0200 |
---|---|---|
committer | Guillaume Lacasa <guillaumelacasa@hotmail.com> | 2016-06-29 12:59:03 +0200 |
commit | dc68717cf5bc471bbcfc08906a84e22199327575 (patch) | |
tree | cdeab1684df3555ea9a8dc9d10209f7632010209 /TwoStepsAuthenticator.TestApp | |
parent | 8e80d5923232b6b5852873a8c54fc3d8bbbc9a96 (diff) | |
download | TwoStepsAuthenticator-dc68717cf5bc471bbcfc08906a84e22199327575.zip TwoStepsAuthenticator-dc68717cf5bc471bbcfc08906a84e22199327575.tar.gz TwoStepsAuthenticator-dc68717cf5bc471bbcfc08906a84e22199327575.tar.bz2 |
Default UsedCodeManager specific to dotnet core1.1
Diffstat (limited to 'TwoStepsAuthenticator.TestApp')
-rw-r--r-- | TwoStepsAuthenticator.TestApp/ViewModel.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/TwoStepsAuthenticator.TestApp/ViewModel.cs b/TwoStepsAuthenticator.TestApp/ViewModel.cs index adc07a4..6bb7389 100644 --- a/TwoStepsAuthenticator.TestApp/ViewModel.cs +++ b/TwoStepsAuthenticator.TestApp/ViewModel.cs @@ -98,7 +98,7 @@ namespace TwoStepsAuthenticatorTestApp var auth = new TwoStepsAuthenticator.TimeAuthenticator(); Code = auth.GetCode(this.Key); - auth.CheckCode(key, Code); + auth.CheckCode(key, Code, "user"); } } } |