From 353fc106b45185809f40dc7e5d66f93db7dd92a9 Mon Sep 17 00:00:00 2001 From: CountBleck Date: Sat, 8 Oct 2022 17:50:38 -0700 Subject: [PATCH 1/2] Fix Cyclone loading How did this get messed up in the first place? --- static/customBare.mjs | 2 +- static/resources/nebulamain.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/static/customBare.mjs b/static/customBare.mjs index e5bb0dc..80b366f 100644 --- a/static/customBare.mjs +++ b/static/customBare.mjs @@ -31,7 +31,7 @@ function insertScript(html) { var res = ` - + ${html} diff --git a/static/resources/nebulamain.js b/static/resources/nebulamain.js index 97cde8a..0957720 100644 --- a/static/resources/nebulamain.js +++ b/static/resources/nebulamain.js @@ -160,7 +160,7 @@ scope: '/service/' let url = value.trim(); if (!isUrl(url)) url = 'www.google.com/search?q=' + url; if (!(url.startsWith('https://') || url.startsWith('http://'))) url = 'http://' + url; - let redirectTo = '/cyclone/' + url; + let redirectTo = '/service/next/' + url; const option = localStorage.getItem('nogg'); if (option === 'on') { From 46240e45e36c637b337ccb084ab13e752e79eab5 Mon Sep 17 00:00:00 2001 From: CountBleck Date: Sat, 8 Oct 2022 17:51:27 -0700 Subject: [PATCH 2/2] Null commit to prevent signature clobbering GitHub, don't edit my commit when this PR is merged. Thank you.