From 691c09eb18d66d4393d23967690cdc67ce11bbdd Mon Sep 17 00:00:00 2001 From: SirStendec Date: Fri, 1 Dec 2017 15:31:59 -0500 Subject: [PATCH] Don't try running FFZ on the blog sub-domain. --- src/entry.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/entry.js b/src/entry.js index 9a6e6889..6011eb44 100644 --- a/src/entry.js +++ b/src/entry.js @@ -2,7 +2,7 @@ 'use strict'; (() => { // Don't run on certain sub-domains. - if ( /^(?:player|im|chatdepot|tmi|api|)\./.test(location.hostname) ) + if ( /^(?:blog|player|im|chatdepot|tmi|api|)\./.test(location.hostname) ) return; const DEBUG = localStorage.ffzDebugMode == 'true' && document.body.classList.contains('ffz-dev') && ! window.Ember,