We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
google-ima
1 parent 23155d8 commit 47cbb43Copy full SHA for 47cbb43
src/js/redirect-engine.js
@@ -210,6 +210,7 @@ class RedirectEngine {
210
const entry = this.resources.get(this.aliases.get(name) || name);
211
if ( entry === undefined ) { return; }
212
if ( entry.mime.startsWith(mime) === false ) { return; }
213
+ if ( entry.data === undefined ) { return; }
214
return {
215
js: entry.toContent(),
216
world: entry.world,
src/js/redirect-resources.js
@@ -94,6 +94,7 @@ export default new Map([
94
} ],
95
[ 'google-ima.js', {
96
alias: 'google-ima3', /* adguard compatibility */
97
+ data: 'text',
98
99
[ 'googlesyndication_adsbygoogle.js', {
100
alias: [
0 commit comments