Changed pepeservice url [SKIP CI]

This commit is contained in:
DutchEllie 2022-05-08 20:12:53 +02:00
parent 2beb31d943
commit dbf07d16b2
Signed by: DutchEllie
SSH Key Fingerprint: SHA256:dKq6ZSgN5E3Viqrw/+xAdf2VdR6hdRGNyrYqXXwfjTY
1 changed files with 1 additions and 1 deletions

View File

@ -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))