diff --git a/src/utils/monkey-patches.ts b/src/utils/monkey-patches.ts index b6deb10..fc8cb53 100755 --- a/src/utils/monkey-patches.ts +++ b/src/utils/monkey-patches.ts @@ -210,7 +210,9 @@ export function patchMeControl() { * Disable Adobe Audience Manager (AAM) */ export function disableAdobeAudienceManager() { - window.adobe = Object.freeze({}); + Object.defineProperty(window, 'adobe', { + get() { return Object.freeze({}); } + }); } /**