From dbf07d16b2622f7cbeb808e6a2b1d8027a317b2d Mon Sep 17 00:00:00 2001 From: DutchEllie Date: Sun, 8 May 2022 20:12:53 +0200 Subject: [PATCH] Changed pepeservice url [SKIP CI] --- pepeservice/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pepeservice/main.go b/pepeservice/main.go index e253a5c..07ef4b2 100644 --- a/pepeservice/main.go +++ b/pepeservice/main.go @@ -59,7 +59,7 @@ func (app *application) sendPepe(w http.ResponseWriter, r *http.Request) { rd := rand.New(s) // Init pseudorandom generator number := rd.Intn(len(app.pepe_list)) - baseURL := "https://cdn.nicecock.eu/pepe/1.00/" + baseURL := "https://cdn.home.dutchellie.nl/pepe/1.00/" URL := baseURL + app.pepe_list[number] w.Write([]byte(URL))