Skip to content

Commit

Permalink
Revert automatic filtering of down voted content. #673
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Vandeberg committed Dec 15, 2016
1 parent 0a4e9f7 commit 8aa1492
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/plugins/tags/tags_plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ struct operation_visitor {
}

/// the universal tag applies to everything safe for work or nsfw with a non-negative payout
if( c.net_rshares >= 0 &&
if( c.net_rshares >= 0 ||
(lower_tags.find( "spam" ) == lower_tags.end() &&
lower_tags.find( "test" ) == lower_tags.end() ) )
{
Expand Down

0 comments on commit 8aa1492

Please sign in to comment.