Updated gitignore to prevent password.txt from being commited to git even if renamed to lowercases.

This commit is contained in:
2026-04-12 00:13:09 +05:00
parent e5024d1582
commit cacc40ef3b
2 changed files with 2 additions and 3 deletions
+1 -2
View File
@@ -1,5 +1,4 @@
Password.txt [Pp]assword.txt
*/Password.txt
# ---> VisualStudioCode # ---> VisualStudioCode
.vscode/* .vscode/*
+1 -1
View File
@@ -16,7 +16,7 @@ await page.GetByRole(AriaRole.Button, new() { Name = "CONTINUE" }).ClickAsync(ne
await Task.Delay(5000); await Task.Delay(5000);
var egovOtp = await OTPExtractor.GetEgovOTP(context, page); var egovOtp = await OTPExtractor.GetEgovOTP(context, page);
if (egovOtp != null) if (egovOtp is not null)
Console.WriteLine($"Extracted eGov OTP: {egovOtp}"); Console.WriteLine($"Extracted eGov OTP: {egovOtp}");
else else
return; return;