From b139f87c7eef19c731fddcb359fc8f907b12a789 Mon Sep 17 00:00:00 2001 From: Kartik Ohri Date: Wed, 21 May 2025 13:11:41 +0530 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- server/subsonic/responses/errors.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/subsonic/responses/errors.go b/server/subsonic/responses/errors.go index f869c763e..b90f9260b 100644 --- a/server/subsonic/responses/errors.go +++ b/server/subsonic/responses/errors.go @@ -19,7 +19,7 @@ var errors = map[int32]string{ ErrorMissingParameter: "Required parameter is missing", ErrorClientTooOld: "Incompatible Subsonic REST protocol version. Client must upgrade", ErrorServerTooOld: "Incompatible Subsonic REST protocol version. Server must upgrade", - ErrorAuthenticationFail: "Wrong username or password or api key", + ErrorAuthenticationFail: "Invalid username, password, or API key", ErrorTokenAuthNotSupported: "Token authentication not supported", ErrorAuthMechanismNotSupported: "Provided authentication mechanism not supported", ErrorMultipleAuthMechanismsProvided: "Multiple conflicting authentication mechanisms provided",