A personal media tracker built on the AT Protocol opnshelf.xyz
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: update share URLs to use new domain

+4 -4
+1 -1
apps/mobile/app/movie/[id].tsx
··· 246 246 ); 247 247 248 248 const handleShare = useCallback(async () => { 249 - const shareUrl = `https://opnshelf.app/movie/${movieId}/${title || ""}`; 249 + const shareUrl = `https://opnshelf.xyz/movies/${movieId}/${title || ""}`; 250 250 try { 251 251 await Share.share({ 252 252 message: `Check out ${title} on OpnShelf!\n\n${shareUrl}`,
+1 -1
apps/mobile/app/show/[id].tsx
··· 168 168 }; 169 169 170 170 const handleShare = async () => { 171 - const shareUrl = `https://opnshelf.app/show/${id}`; 171 + const shareUrl = `https://opnshelf.xyz/shows/${id}`; 172 172 try { 173 173 await Share.share({ 174 174 message: `Check out ${show?.name} on OpnShelf!\n\n${shareUrl}`,
+1 -1
apps/mobile/app/show/[id]/season/[seasonNumber]/episode/[episodeNumber]/index.tsx
··· 292 292 }; 293 293 294 294 const handleShare = async () => { 295 - const shareUrl = `https://opnshelf.app/show/${id}/season/${seasonNumber}/episode/${episodeNumber}`; 295 + const shareUrl = `https://opnshelf.xyz/shows/${id}/season/${seasonNumber}/episode/${episodeNumber}`; 296 296 try { 297 297 await Share.share({ 298 298 message: `Check out S${seasonNumber}E${episodeNumber} of ${show?.name || title || "this show"} on OpnShelf!\n\n${shareUrl}`,
+1 -1
apps/mobile/app/show/[id]/season/[seasonNumber]/index.tsx
··· 189 189 }; 190 190 191 191 const handleShare = async () => { 192 - const shareUrl = `https://opnshelf.app/show/${id}/season/${seasonNumber}`; 192 + const shareUrl = `https://opnshelf.xyz/shows/${id}/season/${seasonNumber}`; 193 193 try { 194 194 await Share.share({ 195 195 message: `Check out ${show?.name} Season ${seasonNumber} on OpnShelf!\n\n${shareUrl}`,