diff --git a/4chan_x.user.js b/4chan_x.user.js
index c07d413a9..6aba7f3c6 100644
--- a/4chan_x.user.js
+++ b/4chan_x.user.js
@@ -1495,7 +1495,7 @@
$.add(div, ta);
return;
}
- return div.innerHTML = "
Filter is disabled.
\n\n Use regular expressions, one per line.
\n Lines starting with a # will be ignored.
\n For example, /weeaboo/i will filter posts containing the string `weeaboo`, case-insensitive.
\n MD5 filtering uses exact string matching, not regular expressions.\n
\nYou can use these settings with each regular expression, separate them with semicolons:\n - \n Per boards, separate them with commas. It is global if not specified.
\n For example: boards:a,jp;.\n \n - \n Filter OPs only along with their threads (`only`), replies only (`no`, this is default), or both (`yes`).
\n For example: op:only;, op:no; or op:yes;.\n \n - \n Overrule the `Show Stubs` setting if specified: create a stub (`yes`) or not (`no`).
\n For example: stub:yes; or stub:no;.\n \n - \n Highlight instead of hiding. You can specify a class name to use with a userstyle.
\n For example: highlight; or highlight:wallpaper;.\n \n - \n Highlighted OPs will have their threads put on top of board pages by default.
\n For example: top:yes; or top:no;.\n \n
";
+ return div.innerHTML = "Filter is disabled.
\n\n Use regular expressions, one per line.
\n Lines starting with a # will be ignored.
\n For example, /weeaboo/i will filter posts containing the string `weeaboo`, case-insensitive.
\n MD5 filtering uses exact string matching, not regular expressions.\n
\nYou can use these settings with each regular expression, separate them with semicolons:\n - \n Per boards, separate them with commas. It is global if not specified.
\n For example: boards:a,jp;.\n \n - \n Filter OPs only along with their threads (`only`), replies only (`no`), or both (`yes`, this is default).
\n For example: op:only;, op:no; or op:yes;.\n \n - \n Overrule the `Show Stubs` setting if specified: create a stub (`yes`) or not (`no`).
\n For example: stub:yes; or stub:no;.\n \n - \n Highlight instead of hiding. You can specify a class name to use with a userstyle.
\n For example: highlight; or highlight:wallpaper;.\n \n - \n Highlighted OPs will have their threads put on top of board pages by default.
\n For example: top:yes; or top:no;.\n \n
";
},
sauce: function(section) {
var sauce;
@@ -1705,7 +1705,7 @@
continue;
}
}
- op = ((_ref3 = filter.match(/[^t]op:(yes|no|only)/)) != null ? _ref3[1] : void 0) || 'no';
+ op = ((_ref3 = filter.match(/[^t]op:(yes|no|only)/)) != null ? _ref3[1] : void 0) || 'yes';
stub = (function() {
var _ref4;
switch ((_ref4 = filter.match(/stub:(yes|no)/)) != null ? _ref4[1] : void 0) {
diff --git a/src/features.coffee b/src/features.coffee
index 3ebf53fb2..55d9a37ae 100644
--- a/src/features.coffee
+++ b/src/features.coffee
@@ -423,7 +423,7 @@ Settings =
For example: boards:a,jp;.
- Filter OPs only along with their threads (`only`), replies only (`no`, this is default), or both (`yes`).
+ Filter OPs only along with their threads (`only`), replies only (`no`), or both (`yes`, this is default).
For example: op:only;, op:no; or op:yes;.
@@ -662,8 +662,8 @@ Filter =
continue
# Filter OPs along with their threads, replies only, or both.
- # Defaults to replies only.
- op = filter.match(/[^t]op:(yes|no|only)/)?[1] or 'no'
+ # Defaults to both.
+ op = filter.match(/[^t]op:(yes|no|only)/)?[1] or 'yes'
# Overrule the `Show Stubs` setting.
# Defaults to stub showing.