From c5d356297085f6e90f59d47638ed483c01ebab9d Mon Sep 17 00:00:00 2001 From: Jesse Vincent Date: Wed, 13 Dec 2023 11:48:19 -0800 Subject: [PATCH] fixup focus.help. we really wanted the 'help' there --- src/api/focus.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/focus.js b/src/api/focus.js index 0fbbb14ea..e74b8b6f3 100644 --- a/src/api/focus.js +++ b/src/api/focus.js @@ -466,7 +466,7 @@ class Focus { } async _help(s) { - const data = await this.request("help"); + const data = await s.request("help"); return data.split(/\r?\n/).filter((v) => v.length > 0); }