Skip to content

Commit

Permalink
API_optional_parsers
Browse files Browse the repository at this point in the history
  • Loading branch information
dragoonDorise committed Dec 4, 2023
1 parent 8976fa5 commit 9aacd67
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/renderer/pages/CheckUpdatePage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ function CheckUpdatePage() {
style={{ marginBottom: 0 }}
onClick={() => showLog(system)}
>
See more details {system}
See more details
</BtnSimple>
),
css: 'emumodal--xs emumodal--loading',
Expand Down
10 changes: 9 additions & 1 deletion src/renderer/pages/EmulatorsDetailPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -1566,7 +1566,15 @@ function EmulatorsDetailPage() {
...statePage,
modal: modalData,
});
ipcChannel.sendMessage('emudeck', [`${code}_migrate|||${code}_migrate`]);
ipcChannel.sendMessage('emudeck', [
`API_optional_parsers|||API_optional_parsers`,
]);

ipcChannel.once(`API_optional_parsers`, (message) => {
const stdout = message.message;

closeModal();
});
};

const doMigration = (code) => {
Expand Down

0 comments on commit 9aacd67

Please sign in to comment.