Skip to content

Commit

Permalink
Fix value used to generate privacy setting in generatePrivacySettings
Browse files Browse the repository at this point in the history
  • Loading branch information
fluiddot committed Jun 29, 2023
1 parent 124cb96 commit 2ab22a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/videopress/local-helpers/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ const generatePrivacySettings = ( {
};
}
return {
privacySetting: isPrivate ? 1 : 0,
privacySetting: isVideoPrivate ? 1 : 0,
isPrivate,
};
};
Expand Down

0 comments on commit 2ab22a2

Please sign in to comment.