Skip to content

Commit

Permalink
Embed Youtube video player not loading as expected after accepting co…
Browse files Browse the repository at this point in the history
…okies #207 (#308)
  • Loading branch information
cogniSyb authored Dec 18, 2023
1 parent 029bb7e commit 0c64019
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/delayed.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ if (!window.location.pathname.includes('srcdoc')
const currentOnetrustActiveGroups = window.OnetrustActiveGroups;

function isSameGroups(groups1, groups2) {
const s1 = JSON.stringify(groups1.split(',').sort());
const s2 = JSON.stringify(groups2.split(',').sort());
const s1 = JSON.stringify(groups1.split(','));
const s2 = JSON.stringify(groups2.split(','));

return s1 === s2;
}
Expand Down

0 comments on commit 0c64019

Please sign in to comment.