From d40b5b40d82c723d5bdbaac29b0feef94b1e17c0 Mon Sep 17 00:00:00 2001 From: dadak-dom Date: Tue, 2 Apr 2024 17:32:56 -0400 Subject: [PATCH] Switch booleans to correct values --- src/background/background.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/background/background.js b/src/background/background.js index 3122d4b7..3eccc3e5 100644 --- a/src/background/background.js +++ b/src/background/background.js @@ -35,12 +35,12 @@ import axios from "axios"; export var hostnameHold = {}; // Set the extension into crawl mode. -export const IS_CRAWLING = true; +export const IS_CRAWLING = false; // Set the extension in crawl mode, with the additional option of capturing all HTTP requests that could be analyzed. // Ideal when testing the functionality of the crawler. // If you want to crawl AND test, make sure BOTH values are set to true. -export const IS_CRAWLING_TESTING = true; +export const IS_CRAWLING_TESTING = false; async function apiSend() { //@ts-ignore