Skip to content

Commit f509998

Browse files
committed
Fix window /show
1 parent 049dbdc commit f509998

File tree

1 file changed

+1
-1
lines changed
  • resources/js/electron-plugin/src/server/api

1 file changed

+1
-1
lines changed

resources/js/electron-plugin/src/server/api/window.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ router.post('/show', (req, res) => {
117117
state.windows[id].show();
118118
}
119119

120-
return res.sendStatus(200);
120+
res.sendStatus(200);
121121
});
122122

123123
router.post('/always-on-top', (req, res) => {

0 commit comments

Comments
 (0)