From cb8ebc780bae03ab3a103554c578be6dff2009bb Mon Sep 17 00:00:00 2001 From: Bryan Ashby Date: Thu, 4 Aug 2022 13:04:45 -0600 Subject: [PATCH] Fix typo for status indicators --- core/wfc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/wfc.js b/core/wfc.js index fd6305b9..72f8bd81 100644 --- a/core/wfc.js +++ b/core/wfc.js @@ -407,7 +407,7 @@ exports.getModule = class WaitingForCallerModule extends MenuModule { _getStatusStrings(isAvailable, isVisible) { const availIndicators = Array.isArray(this.config.statusAvailableIndicators) ? this.config.statusAvailableIndicators - : this.client.currentTheme.helpers.getStatusAvailableIndicators(); + : this.client.currentTheme.helpers.getStatusAvailIndicators(); const visIndicators = Array.isArray(this.config.statusVisibleIndicators) ? this.config.statusVisibleIndicators : this.client.currentTheme.helpers.getStatusVisibleIndicators();