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 7684e8869b
commit 28bad6c3c1
2 changed files with 2 additions and 3 deletions
+1 -2
View File
@@ -1,5 +1,4 @@
Password.txt
*/Password.txt
[Pp]assword.txt
# ---> VisualStudioCode
.vscode/*
+1 -1
View File
@@ -16,7 +16,7 @@ await page.GetByRole(AriaRole.Button, new() { Name = "CONTINUE" }).ClickAsync(ne
await Task.Delay(5000);
var egovOtp = await OTPExtractor.GetEgovOTP(context, page);
if (egovOtp != null)
if (egovOtp is not null)
Console.WriteLine($"Extracted eGov OTP: {egovOtp}");
else
return;