Fixed a small exception

This commit is contained in:
WolverinDEV 2020-10-31 11:18:56 +01:00
parent 2f5c0f6143
commit 7c14127b30

View file

@ -130,7 +130,7 @@ class LegacyBridgeContextMenuProvider implements ContextMenuProvider {
spawn_context_menu(x: number, y: number, ...entries: MenuEntry[]) {
const closeCallbacks = [];
spawnContextMenu({ pageX: x, pageY: y }, entries.map(e => LegacyBridgeContextMenuProvider.mapEntry(e, closeCallbacks)).filter(e => !!e), () => closeCallbacks.forEach(callback => callback()));
spawnContextMenu({ pageX: x, pageY: y }, entries.map(e => LegacyBridgeContextMenuProvider.mapEntry(e, closeCallbacks)).filter(e => !!e), () => closeCallbacks.filter(e => typeof e === "function").forEach(callback => callback()));
}
}