From e6c492a5eb6c391890af62a2a969e76896cad3f6 Mon Sep 17 00:00:00 2001 From: mgerb42 Date: Tue, 4 Apr 2017 09:05:22 -0500 Subject: [PATCH] use the real giphy end point --- server/bothandlers/gif.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/bothandlers/gif.go b/server/bothandlers/gif.go index bb308ed..43f28fc 100644 --- a/server/bothandlers/gif.go +++ b/server/bothandlers/gif.go @@ -14,7 +14,7 @@ import ( const ( gifPrefix string = "!gif " userAgent string = "go-discord-bot" - giphyURL string = "http://api.giphy.com/v1/stickers/search?&api_key=dc6zaTOxFJmzC&limit=10&q=" + giphyURL string = "http://api.giphy.com/v1/gifs/search?&api_key=dc6zaTOxFJmzC&limit=10&q=" ) // GifHandler - handler for giphy api