Skip to content

Commit

Permalink
:atom: [meta-server] don't mark YPP videos as explicit (#6261)
Browse files Browse the repository at this point in the history
  • Loading branch information
kdembler committed May 7, 2024
1 parent f32a505 commit 8a9e71e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/atlas-meta-server/src/tags.ts
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ export const generateVideoSchemaTagsHtml = (
{
type: 'regular',
prop: 'isFamilyFriendly',
value: (!(video.isExplicit ?? true)).toString(),
value: (!(video.isExplicit ?? false)).toString(),
},
{
type: 'regular',
Expand Down

0 comments on commit 8a9e71e

Please sign in to comment.