From 7915955afad2e9aee599946d324ce588a504f455 Mon Sep 17 00:00:00 2001 From: zuckerberg <5-zuckerberg@users.noreply.git.neet.dev> Date: Fri, 3 Sep 2021 18:29:25 -0400 Subject: [PATCH] use the correct method for skip --- radio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radio.py b/radio.py index 6527123..5f72108 100644 --- a/radio.py +++ b/radio.py @@ -46,7 +46,7 @@ def current(i, irc): irc.privmsg(i.channel, r.text) def skip(i, irc): - r = requests.get(host+"skip") + r = requests.post(host+"skip") irc.privmsg(i.channel, r.text) def queue(i, irc):