From 1932e8910bc2b9344e09c8e415cdd2f9cbc4d6b5 Mon Sep 17 00:00:00 2001 From: hole-thu Date: Thu, 10 Sep 2020 21:22:25 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=AF=E6=8C=81=E6=8C=89=E6=9C=80=E6=96=B0?= =?UTF-8?q?=E5=9B=9E=E5=A4=8D=E6=8E=92=E5=BA=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Config.js | 8 ++++++++ src/flows_api.js | 3 ++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/src/Config.js b/src/Config.js index c3b67d3..8ad66d5 100644 --- a/src/Config.js +++ b/src/Config.js @@ -29,6 +29,7 @@ const DEFAULT_CONFIG = { easter_egg: true, color_scheme: 'default', no_c_post: false, + by_c: false, block_words: [], whitelist_cw: [] }; @@ -441,6 +442,13 @@ export class ConfigUI extends PureComponent { description="不获取所有带折叠警告的树洞,折叠警告豁免将不起作用" />
+ +

新功能建议或问题反馈请在  { let response = await fetch( API_BASE + '/getlist?p=' + page - + (window.config.no_c_post ? '&no_cw' : ''), + + (window.config.no_c_post ? '&no_cw' : '') + + (window.config.by_c ? '&by_c' : ''), { headers: {'User-Token': token}, },