fix incorrect display of OTP secret encoding in recovery screen

This commit is contained in:
Philipp Crocoll 2015-12-22 13:21:18 +01:00
parent c048399c63
commit 39555fcdaf
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ namespace OtpKeyProv
private const string FmtDec = "Dec";
public static readonly string[] Formats = new string[]{
FmtHex, FmtBase64, FmtBase32, FmtUtf8, FmtDec
FmtHex, FmtBase64, FmtUtf8, FmtDec, FmtBase32
};
public static OtpDataFmt? GetOtpDataFormat(String strFmt)