From 3f5019f4e14f752483528f6b004b473e5372e9a0 Mon Sep 17 00:00:00 2001 From: edna Date: Sat, 4 Jun 2022 00:47:08 +0200 Subject: [PATCH] support fuxgames and llm we really need a better system for this --- redirector.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/redirector.go b/redirector.go index 13d7953..5adc46b 100644 --- a/redirector.go +++ b/redirector.go @@ -48,7 +48,9 @@ Just switch to https up there ↑ if strings.Contains(r.Host, "chrissx.de") || strings.Contains(r.Host, "chrissx.eu") || strings.Contains(r.Host, "zerm.eu") || - strings.Contains(r.Host, "zerm.link") { + strings.Contains(r.Host, "zerm.link") || + strings.Contains(r.Host, "fuxgames.com") || + strings.Contains(r.Host, "lowlevelmusic.com") { var url = url.URL{} url.Host = r.Host url.Scheme = "https"