@@ -771,8 +771,8 @@ async function handleSubdomainProfile(subdomain, url, request, originalHostname)
771771 const userScript = `<script>window.__DIVINE_USER__ = ${ JSON . stringify ( divineUser ) } ;</script>` ;
772772
773773 // Update OG tags for the profile
774- const ogTitle = divineUser . displayName + ' on diVine ' ;
775- const ogDescription = divineUser . about || `Watch ${ divineUser . displayName } 's videos on diVine ` ;
774+ const ogTitle = divineUser . displayName + ' on Divine ' ;
775+ const ogDescription = divineUser . about || `Watch ${ divineUser . displayName } 's videos on Divine ` ;
776776 const ogImage = divineUser . picture || 'https://divine.video/og.png' ;
777777 const ogUrl = `https://${ subdomain } .${ apexDomain } /` ;
778778
@@ -982,15 +982,15 @@ async function fetchVideoMetadata(videoId) {
982982 description = content . trim ( ) ;
983983 } else if ( statsList . length > 0 ) {
984984 // Show engagement stats
985- description = `${ statsList . join ( ' • ' ) } on diVine ` ;
985+ description = `${ statsList . join ( ' • ' ) } on Divine ` ;
986986 } else {
987- description = 'Watch this short video on diVine ' ;
987+ description = 'Watch this short video on Divine ' ;
988988 }
989989
990990 console . log ( 'Fetched video metadata - title:' , title , 'thumbnail:' , thumbnail ) ;
991991
992992 return {
993- title : title || 'Video on diVine ' ,
993+ title : title || 'Video on Divine ' ,
994994 description : description ,
995995 thumbnail : thumbnail || 'https://divine.video/og.avif' ,
996996 authorName : getTag ( 'author' ) || '' ,
@@ -1018,8 +1018,8 @@ async function handleVideoOgTags(request, videoId, url) {
10181018 }
10191019
10201020 // Default meta values if video not found
1021- const title = videoMeta ?. title || 'Video on diVine ' ;
1022- const description = videoMeta ?. description || 'Watch this video on diVine - Short-form looping videos on Nostr' ;
1021+ const title = videoMeta ?. title || 'Video on Divine ' ;
1022+ const description = videoMeta ?. description || 'Watch this video on Divine - Short-form looping videos on Nostr' ;
10231023 const thumbnail = videoMeta ?. thumbnail || 'https://divine.video/og.avif' ;
10241024 const authorName = videoMeta ?. authorName || '' ;
10251025 const videoUrl = `https://divine.video/video/${ videoId } ` ;
@@ -1033,7 +1033,7 @@ async function handleVideoOgTags(request, videoId, url) {
10331033<head>
10341034 <meta charset="UTF-8">
10351035 <meta name="viewport" content="width=device-width, initial-scale=1.0">
1036- <title>${ escapeHtml ( title ) } - diVine </title>
1036+ <title>${ escapeHtml ( title ) } - Divine </title>
10371037
10381038 <!-- Open Graph Meta Tags -->
10391039 <meta property="og:type" content="video.other" />
@@ -1043,7 +1043,7 @@ async function handleVideoOgTags(request, videoId, url) {
10431043 <meta property="og:image:width" content="480" />
10441044 <meta property="og:image:height" content="480" />
10451045 <meta property="og:url" content="${ escapeHtml ( videoUrl ) } " />
1046- <meta property="og:site_name" content="diVine " />
1046+ <meta property="og:site_name" content="Divine " />
10471047
10481048 <!-- Twitter Card Meta Tags -->
10491049 <meta name="twitter:card" content="summary_large_image" />
0 commit comments