Skip to content

Commit

Permalink
null instead of false by default
Browse files Browse the repository at this point in the history
  • Loading branch information
BrutuZ committed Sep 13, 2024
1 parent 54f4704 commit 29de6fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion site/scripts/library.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { loadSettings } from './settings.js';
const url = new URL(window.location);
export var activeTabId = null;
const httpRegex = RegExp('^https?://');
var repoData = false;
var repoData = null;

// Function to Initialise the Tab Contents and Library from the JSON found in the data variable.
export function initializeLibrary() {
Expand Down

0 comments on commit 29de6fd

Please sign in to comment.