Skip to content
This repository has been archived by the owner on Oct 4, 2019. It is now read-only.

Commit

Permalink
Merge pull request #910 from GolosChain/752-increase-number-of-tags
Browse files Browse the repository at this point in the history
Increase tags limit to 15. #752
  • Loading branch information
afalaleev committed Aug 3, 2018
2 parents 8ed30a0 + 9cef06c commit 143aa1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/tags/tag_visitor.cpp
Expand Up @@ -19,7 +19,7 @@ namespace golos { namespace plugins { namespace tags {

std::set<std::string> lower_tags;

std::size_t tag_limit = 5;
std::size_t tag_limit = 15;
for (const auto& name : meta.tags) {
if (lower_tags.size() > tag_limit) {
break;
Expand Down

0 comments on commit 143aa1a

Please sign in to comment.