diff --git a/builds/appchan-x.user.js b/builds/appchan-x.user.js index cb99008b7..6731a52f1 100644 --- a/builds/appchan-x.user.js +++ b/builds/appchan-x.user.js @@ -18076,6 +18076,8 @@ Main.setThemeString(); Main.setMascotString(); switch (location.hostname) { + case 'blog.4chan.org': + return; case '4chan.org': case 'www.4chan.org': g.TYPE = 'sfw'; diff --git a/builds/crx/script.js b/builds/crx/script.js index 6d9865d44..43c8cc8b0 100644 --- a/builds/crx/script.js +++ b/builds/crx/script.js @@ -18087,6 +18087,8 @@ Main.setThemeString(); Main.setMascotString(); switch (location.hostname) { + case 'blog.4chan.org': + return; case '4chan.org': case 'www.4chan.org': g.TYPE = 'sfw'; diff --git a/src/General/Main.coffee b/src/General/Main.coffee index 007de86a4..290b237a6 100644 --- a/src/General/Main.coffee +++ b/src/General/Main.coffee @@ -73,6 +73,8 @@ Main = Main.setMascotString() switch location.hostname + when 'blog.4chan.org' + return when '4chan.org', 'www.4chan.org' g.TYPE = 'sfw' g.VIEW = 'home'