From bf54e459b6187d50356c4b9da0706d391a02d026 Mon Sep 17 00:00:00 2001 From: WeebDataHoarder <57538841+WeebDataHoarder@users.noreply.github.com> Date: Wed, 2 Mar 2022 20:06:22 +0100 Subject: [PATCH] Fix /queue endpoint method --- MeteorLight.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MeteorLight.go b/MeteorLight.go index 080c141..d1d9f7d 100644 --- a/MeteorLight.go +++ b/MeteorLight.go @@ -174,7 +174,7 @@ func main() { } case "queue": if len(pathSegments) == 2 { - if request.Method != "POST" { + if request.Method != "GET" { return } var blobs = make([]map[string]interface{}, 0, 1)