From 99209d36e1af2929582a2eafc39898b4083036be Mon Sep 17 00:00:00 2001
From: syuilo <syuilotan@yahoo.co.jp>
Date: Tue, 3 Nov 2020 16:21:28 +0900
Subject: [PATCH] Fix bug of c3ae6f3a4

---
 src/client/os.ts | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/client/os.ts b/src/client/os.ts
index 898b876589..e917f8a4a3 100644
--- a/src/client/os.ts
+++ b/src/client/os.ts
@@ -300,8 +300,8 @@ export function modalMenu(items: any[], src?: HTMLElement, options?: { align?: s
 				resolve();
 				dispose();
 			},
-		}).then(_dispose => {
-			dispose = _dispose;
+		}).then(res => {
+			dispose = res.dispose;
 		});
 	});
 }
@@ -318,8 +318,8 @@ export function contextMenu(items: any[], ev: MouseEvent) {
 				resolve();
 				dispose();
 			},
-		}).then(_dispose => {
-			dispose = _dispose;
+		}).then(res => {
+			dispose = res.dispose;
 		});
 	});
 }
@@ -337,8 +337,8 @@ export function post(props: Record<string, any>) {
 				resolve();
 				dispose();
 			},
-		}).then(_dispose => {
-			dispose = _dispose;
+		}).then(res => {
+			dispose = res.dispose;
 		});
 	});
 }