2
0

Fixed #206 - 'p' trigger for phrase was missing.

This commit is contained in:
Maarten Billemont 2017-09-10 14:03:56 -04:00
parent f50fdb7777
commit 1adb18a7e7

View File

@ -40,6 +40,8 @@ const MPResultType mpw_typeWithName(const char *typeName) {
return MPResultTypeTemplatePIN;
if ('n' == typeName[0])
return MPResultTypeTemplateName;
if ('p' == typeName[0])
return MPResultTypeTemplatePhrase;
if ('P' == typeName[0])
return MPResultTypeStatefulPersonal;
if ('D' == typeName[0])