From 7844e80991d784eed107dd9a661dd5257ae49675 Mon Sep 17 00:00:00 2001 From: Max Isom Date: Tue, 17 Mar 2020 21:36:48 -0500 Subject: Refactor play command --- src/utils/error-msg.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/utils/error-msg.ts') diff --git a/src/utils/error-msg.ts b/src/utils/error-msg.ts index 7325776..832de3c 100644 --- a/src/utils/error-msg.ts +++ b/src/utils/error-msg.ts @@ -5,7 +5,7 @@ export default (error?: string | Error): string => { if (typeof error === 'string') { str = `🚫 ${error}`; } else if (error instanceof Error) { - str = `🚫 error: ${error.name}`; + str = `🚫 ope: ${error.name}`; } } -- cgit v1.2.3