Skip to content

Commit

Permalink
minor: fix og:type being video.video or video.image 🤦
Browse files Browse the repository at this point in the history
  • Loading branch information
okdargy committed Jan 24, 2024
1 parent e4280ba commit d62e5f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/templates/pages/VideoResponse.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export function VideoResponse(data: AwemeList): JSX.Element {
},
{
name: 'og:type',
content: `video.${data.video.duration !== 0 ? 'video.other' : 'image.other'}`
content: `${data.video.duration !== 0 ? 'video.other' : 'image.other'}`
},
{
name: `og:${data.video.duration !== 0 ? 'video' : 'image'}:type`,
Expand Down

0 comments on commit d62e5f6

Please sign in to comment.