From 1adb18a7e7ee274ff3b00d7b61a281bcb3b1ff95 Mon Sep 17 00:00:00 2001 From: Maarten Billemont Date: Sun, 10 Sep 2017 14:03:56 -0400 Subject: [PATCH] Fixed #206 - 'p' trigger for phrase was missing. --- core/c/mpw-types.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/c/mpw-types.c b/core/c/mpw-types.c index 5eec4e78..0ed61e92 100644 --- a/core/c/mpw-types.c +++ b/core/c/mpw-types.c @@ -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])