From 3427d96df415e834aa50962cfb841ed10519156c Mon Sep 17 00:00:00 2001 From: Spotlight Date: Mon, 17 Aug 2020 01:20:36 -0500 Subject: [PATCH] Use original error message upon empty or invalid action specification --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index ebab5cc..03872f0 100644 --- a/main.go +++ b/main.go @@ -95,7 +95,7 @@ func commonHandler(w http.ResponseWriter, r *http.Request) { // Figure out the action to handle via header. service, action := parseAction(r.Header.Get("SOAPAction")) if service == "" || action == "" { - printError(w, "Error interpreting request...") + printError(w, "WiiSOAP can't handle this. Try again later or actually use a Wii instead of a computer.") return }