From 72e4ec95cedcb9664a097cc53b0666bef2a9797b Mon Sep 17 00:00:00 2001 From: Evan Hahn <69474926+EvanHahn-Signal@users.noreply.github.com> Date: Mon, 16 Nov 2020 14:05:10 -0600 Subject: [PATCH] Minor: fix typo in WebAPI error message --- ts/textsecure/WebAPI.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/textsecure/WebAPI.ts b/ts/textsecure/WebAPI.ts index 8e48982828d..930c6151961 100644 --- a/ts/textsecure/WebAPI.ts +++ b/ts/textsecure/WebAPI.ts @@ -406,7 +406,7 @@ async function _promiseAjax( } else if (unauthenticated) { if (!accessKey) { throw new Error( - '_promiseAjax: mode is aunathenticated, but accessKey was not provided' + '_promiseAjax: mode is unauthenticated, but accessKey was not provided' ); } // Access key is already a Base64 string