Closed JorenVos closed 6 years ago
There is a small mistake in a property binding which makes it impossible to catch the case that the end user triggers the user fallback button.
Error: MAKE_SYSTEM_PROP(ERROR_USER_FALLBACK, LAErrorAuthenticationFailed);
MAKE_SYSTEM_PROP(ERROR_USER_FALLBACK, LAErrorAuthenticationFailed);
Should be: MAKE_SYSTEM_PROP(ERROR_USER_FALLBACK, LAErrorUserFallback);
MAKE_SYSTEM_PROP(ERROR_USER_FALLBACK, LAErrorUserFallback);
Good point! Fixed as part of https://github.com/appcelerator-modules/titanium-identity/commit/4eb994f5262942a309577706af9d3e9a0e863316 and v1.0.3. Thanks!
There is a small mistake in a property binding which makes it impossible to catch the case that the end user triggers the user fallback button.
Error:
MAKE_SYSTEM_PROP(ERROR_USER_FALLBACK, LAErrorAuthenticationFailed);
Should be:
MAKE_SYSTEM_PROP(ERROR_USER_FALLBACK, LAErrorUserFallback);