We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f85acb4 commit 7646f20Copy full SHA for 7646f20
bin/index.js
@@ -325,7 +325,10 @@ async function start_truecallerjs(argv, authkey) {
325
}
326
process.exit();
327
} else {
328
- if ("parsedPhoneNumber" in req_data && `+${req_data.parsedPhoneNumber}` == pn.getNumber("e164")) {
+ if (
329
+ "parsedPhoneNumber" in req_data &&
330
+ `+${req_data.parsedPhoneNumber}` == pn.getNumber("e164")
331
+ ) {
332
console.log(
333
"\n\nPrevious request was found for this mobile number.\n"
334
);
@@ -350,7 +353,6 @@ async function start_truecallerjs(argv, authkey) {
350
353
var x = readlineSync.question(
351
354
"Do you want to enter previous OTP (y/n): "
352
355
-
356
357
358
0 commit comments