« get me outta code hell

mtui - Music Text User Interface - user-friendly command line music player
about summary refs log tree commit diff
path: root/general-util.js
diff options
context:
space:
mode:
Diffstat (limited to 'general-util.js')
-rw-r--r--general-util.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/general-util.js b/general-util.js
index b4491de..4bfd491 100644
--- a/general-util.js
+++ b/general-util.js
@@ -336,7 +336,7 @@ export async function parseOptions(options, optionDescriptorMap) {
 
 parseOptions.handleDashless = Symbol()
 
-export function silenceEvents(emitter, eventsToSilence, callback) {
+export async function silenceEvents(emitter, eventsToSilence, callback) {
   const oldEmit = emitter.emit
 
   emitter.emit = function(event, ...data) {
@@ -345,7 +345,7 @@ export function silenceEvents(emitter, eventsToSilence, callback) {
     }
   }
 
-  callback()
+  await callback()
 
   emitter.emit = oldEmit
 }