Skip to content

Commit

Permalink
Switch booleans to correct values
Browse files Browse the repository at this point in the history
  • Loading branch information
dadak-dom committed Apr 2, 2024
1 parent bce4e10 commit d40b5b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/background/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d40b5b4

Please sign in to comment.