From 6a428c33093e7ecb13d4e4dac862c90ac7242cb4 Mon Sep 17 00:00:00 2001 From: Jordan Blasenhauer Date: Wed, 6 Mar 2024 16:58:21 +0100 Subject: [PATCH] add www to link --- docs/overrides/main.html | 2 +- src/ui/static/js/global.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/overrides/main.html b/docs/overrides/main.html index 67e01d2a7..3fb75065b 100644 --- a/docs/overrides/main.html +++ b/docs/overrides/main.html @@ -87,7 +87,7 @@ function runBanner() { // Try to get dynamic content // Else keep static ones - fetch("https://bunkerweb.io/api/bw-ui-news") + fetch("https://www.bunkerweb.io/api/bw-ui-news") .then((res) => { return res.json(); }) diff --git a/src/ui/static/js/global.js b/src/ui/static/js/global.js index 499b97cdf..545d959b4 100644 --- a/src/ui/static/js/global.js +++ b/src/ui/static/js/global.js @@ -385,7 +385,7 @@ class Banner { JSON.parse(sessionStorage.getItem("bannerNews")), ); } - fetch("https://bunkerweb.io/api/bw-ui-news") + fetch("https://www.bunkerweb.io/api/bw-ui-news") .then((res) => { return res.json(); })