Update app.py
Browse files
app.py
CHANGED
@@ -1616,8 +1616,8 @@ def insert_data(data, verify_phone, add_curator):
|
|
1616 |
curator = row.get('curator', '')
|
1617 |
|
1618 |
if verify_phone == "1":
|
1619 |
-
|
1620 |
-
if
|
1621 |
ws_st = 1
|
1622 |
else:
|
1623 |
ws_st = 0
|
|
|
1616 |
curator = row.get('curator', '')
|
1617 |
|
1618 |
if verify_phone == "1":
|
1619 |
+
verification_result = verify_phone_number(phone)
|
1620 |
+
if verification_result == "true":
|
1621 |
ws_st = 1
|
1622 |
else:
|
1623 |
ws_st = 0
|