Browse Source

add quote blacklist

dev
xmcp 6 years ago
parent
commit
a28d8eb37c
  1. 3
      src/Flows.js

3
src/Flows.js

@ -16,6 +16,7 @@ const AUDIO_BASE=PKUHELPER_ROOT+'services/pkuhole/audios/';
const SEARCH_PAGESIZE=50; const SEARCH_PAGESIZE=50;
const CLICKABLE_TAGS={a: true, audio: true}; const CLICKABLE_TAGS={a: true, audio: true};
const PREVIEW_REPLY_COUNT=10; const PREVIEW_REPLY_COUNT=10;
const QUOTE_BLACKLIST=['23333','233333','66666','666666','10086','10000','100000','99999','999999'];
window.LATEST_POST_ID=parseInt(localStorage['_LATEST_POST_ID'],10)||0; window.LATEST_POST_ID=parseInt(localStorage['_LATEST_POST_ID'],10)||0;
@ -439,7 +440,7 @@ class FlowItemRow extends PureComponent {
let quote_id=null; let quote_id=null;
if(!this.props.is_quote && localStorage['DISABLE_QUOTE']!=='on') if(!this.props.is_quote && localStorage['DISABLE_QUOTE']!=='on')
for(let [mode,content] of parts) for(let [mode,content] of parts)
if(mode==='pid') if(mode==='pid' && QUOTE_BLACKLIST.indexOf(content)===-1)
if(quote_id===null) if(quote_id===null)
quote_id=parseInt(content); quote_id=parseInt(content);
else { else {

Loading…
Cancel
Save