Skip to content
This repository has been archived by the owner on Aug 8, 2024. It is now read-only.

Commit

Permalink
feat: include episode number in URL
Browse files Browse the repository at this point in the history
  • Loading branch information
danirod committed Dec 18, 2022
1 parent d7f1164 commit aa2382d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/thumbnail/Thumbnail2023.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
$: titleLinesOffset = (120 * titleLines.length) / 2;
$: if (!!download) {
const title = `${$store.title}_${$store.chapter}.png`;
const title = `${$store.title}_${store.episode}_${$store.chapter}.png`;
svgAsPngUri(svg).then(() => {
saveSvgAsPng(svg, title);
});
Expand Down

0 comments on commit aa2382d

Please sign in to comment.