Skip to content

Commit 3557fcb

Browse files
committed
fix: Correct logger for OtpSession
1 parent dc9fc52 commit 3557fcb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Yubico.YubiKey/src/Yubico/YubiKey/Otp/OtpSession.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public sealed class OtpSession : ApplicationSession, IOtpSession
7777
/// <param name="keyParameters">An instance of <see cref="Scp03KeyParameters"/> containing the
7878
/// parameters for the SCP03 key. If <see langword="null"/>, the default parameters will be used. </param>
7979
public OtpSession(IYubiKeyDevice yubiKey, ScpKeyParameters? keyParameters = null)
80-
: base(Log.GetLogger<OathSession>(), yubiKey, YubiKeyApplication.Otp, keyParameters)
80+
: base(Log.GetLogger<OtpSession>(), yubiKey, YubiKeyApplication.Otp, keyParameters)
8181
{
8282
// Getting the OTP status allows the user to read the OTP status on the OtpSession object.
8383
_otpStatus = Connection.SendCommand(new ReadStatusCommand()).GetData();

0 commit comments

Comments
 (0)