Skip to content

Commit c57d233

Browse files
committed
OnlineChecks: Fix VirusTotal column sleep time
1 parent b569ddb commit c57d233

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

plugins/OnlineChecks/virustotal.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ NTSTATUS NTAPI VirusTotalProcessApiThread(
393393
NtSetInformationThread(NtCurrentThread(), ThreadBasePriority, &increment, sizeof(LONG));
394394
NtSetInformationThread(NtCurrentThread(), ThreadIoPriority, &ioPriority, sizeof(IO_PRIORITY_HINT));
395395

396-
Sleep(5 * PH_TICKS_PER_SEC);
396+
Sleep(5 * 1000);
397397

398398
do
399399
{
@@ -536,8 +536,8 @@ NTSTATUS NTAPI VirusTotalProcessApiThread(
536536
PhDereferenceObject(resultTempList);
537537
}
538538

539-
// Wait 15 seconds before checking list again
540-
Sleep(15 * PH_TICKS_PER_MS);
539+
// Wait 10 seconds before checking list again
540+
Sleep(10 * 1000);
541541

542542
} while (VirusTotalHandle);
543543

0 commit comments

Comments
 (0)