WebContextMenus: Don't include queryparams in filename on save
This commit is contained in:
parent
09e919f0c6
commit
0dee968e98
1 changed files with 1 additions and 1 deletions
|
@ -193,7 +193,7 @@ export default definePlugin({
|
|||
const data = await fetchImage(url);
|
||||
if (!data) return;
|
||||
|
||||
const name = url.split("/").pop()!;
|
||||
const name = new URL(url).pathname.split("/").pop()!;
|
||||
const file = new File([data], name, { type: data.type });
|
||||
|
||||
saveFile(file);
|
||||
|
|
Loading…
Reference in a new issue