facia-mobilesdk 0.0.8 → 0.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -43,13 +43,13 @@ public class FaciaReactNativeModule extends ReactContextBaseJavaModule {
|
|
|
43
43
|
|
|
44
44
|
if (docType.equalsIgnoreCase("ID_CARD"))
|
|
45
45
|
{
|
|
46
|
-
configJson.put("documentType", DocumentType.ID_CARD)
|
|
46
|
+
configJson.put("documentType", DocumentType.ID_CARD);
|
|
47
47
|
}else if (docType.equalsIgnoreCase("PASSPORT"))
|
|
48
48
|
{
|
|
49
|
-
configJson.put("documentType", DocumentType.PASSPORT)
|
|
49
|
+
configJson.put("documentType", DocumentType.PASSPORT);
|
|
50
50
|
}else
|
|
51
51
|
{
|
|
52
|
-
configJson.put("documentType", DocumentType.OTHERS)
|
|
52
|
+
configJson.put("documentType", DocumentType.OTHERS);
|
|
53
53
|
}
|
|
54
54
|
|
|
55
55
|
FaciaAi faciaAi = new FaciaAi();
|