diff --git a/src/background/api.js b/src/background/api.js index b2d92ac..97f2a84 100644 --- a/src/background/api.js +++ b/src/background/api.js @@ -374,6 +374,10 @@ module.exports = ({ for(const torrent of torrents) { search[torrent.hash] = Object.assign(baseRowData(torrent), search[torrent.hash]) + + // temporary ignore adult content in search (workaroud) + if(safeSearch && search[torrent.hash].contentCategory == 'xxx') + delete search[torrent.hash] } callback(Object.values(search));