From 7db402144fd371359d4fe73d37f13b74170adcca Mon Sep 17 00:00:00 2001 From: Neale Pickett Date: Wed, 17 Apr 2024 17:31:17 -0600 Subject: [PATCH] Oops, revert intentional typo --- CHANGELOG.md | 6 +++++- theme/common.mjs | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f414e1..d978aaf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [v4.6.2] - 2024-04-17 +### Fixed +- Fixed code to intentionally break config.json loading, used to test v4.6.1 + ## [v4.6.1] - 2024-04-17 -### Changed +### Fixed - Fixed bug with solved puzzle tracking when config.json cannot be loaded. ## [v4.6.0] - 2024-04-17 diff --git a/theme/common.mjs b/theme/common.mjs index e699da2..cfb2581 100644 --- a/theme/common.mjs +++ b/theme/common.mjs @@ -69,7 +69,7 @@ async function Config() { let obj = {} try { let resp = await fetch( - new URL("configg.json", BaseURL), + new URL("config.json", BaseURL), { cache: "no-cache" },