Skip to content

Commit

Permalink
Merge pull request #412 from caorushizi/dev_videoName
Browse files Browse the repository at this point in the history
fix: 🐛  change the name of the detected video
  • Loading branch information
caorushizi authored Feb 10, 2025
2 parents d3a8261 + 948fe9e commit 2b6f15f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ export function DownloadItem({

return (
<TerminalDrawer
key={"terminal"}
trigger={
<IconButton
key="terminal"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,10 @@ export function BrowserView() {
};

const onWebviewLinkMessage = async (e: unknown, data: any) => {
addSource(data);
addSource({
...data,
name: data.name + `_${randomName()}`,
});
};

addIpcListener("show-download-dialog", onShowDownloadDialog);
Expand Down

0 comments on commit 2b6f15f

Please sign in to comment.