diff --git a/materialious/src/lib/components/ShareVideo.svelte b/materialious/src/lib/components/ShareVideo.svelte index 6b1360ed..6f343d0b 100644 --- a/materialious/src/lib/components/ShareVideo.svelte +++ b/materialious/src/lib/components/ShareVideo.svelte @@ -21,7 +21,7 @@ if (includeTimestamp) url += `?${param}=${Math.floor(currentTime ?? 0)}`; if ((await Share.canShare()) && Capacitor.getPlatform() !== 'electron') { - await Share.share({ url: url }); + await Share.share({ url: url, dialogTitle: video.title }); } else { await Clipboard.write({ string: url }); ui('#share-success'); diff --git a/materialious/src/routes/(app)/watch/[slug]/+page.svelte b/materialious/src/routes/(app)/watch/[slug]/+page.svelte index c6321465..1019fc13 100644 --- a/materialious/src/routes/(app)/watch/[slug]/+page.svelte +++ b/materialious/src/routes/(app)/watch/[slug]/+page.svelte @@ -445,7 +445,6 @@