From a45b5c8ba0e916f304d79ef739140342fc9dc487 Mon Sep 17 00:00:00 2001 From: Luke Date: Fri, 24 Sep 2021 11:39:25 -0500 Subject: [PATCH] Fixed mute error message double negative --- backend/src/RecoverablePluginError.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/RecoverablePluginError.ts b/backend/src/RecoverablePluginError.ts index e34a2ab2..b621fd41 100644 --- a/backend/src/RecoverablePluginError.ts +++ b/backend/src/RecoverablePluginError.ts @@ -18,7 +18,7 @@ export const RECOVERABLE_PLUGIN_ERROR_MESSAGES = { [ERRORS.NO_USER_NOTIFICATION_CHANNEL]: "No user notify channel specified", [ERRORS.INVALID_USER_NOTIFICATION_CHANNEL]: "Invalid user notify channel specified", [ERRORS.INVALID_USER]: "Invalid user", - [ERRORS.INVALID_MUTE_ROLE_ID]: "Specified mute role is not invalid", + [ERRORS.INVALID_MUTE_ROLE_ID]: "Specified mute role is not valid", [ERRORS.MUTE_ROLE_ABOVE_ZEP]: "Specified mute role is above Zeppelin in the role hierarchy", };