From 9cef06c979673a45369053aa663b72cd8f5d9dce Mon Sep 17 00:00:00 2001 From: Andrew Falaleev Date: Fri, 3 Aug 2018 15:17:52 +0700 Subject: [PATCH] Increase tags limit to 15. #752 --- plugins/tags/tag_visitor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/tags/tag_visitor.cpp b/plugins/tags/tag_visitor.cpp index e2944ac184..6597b4c0f2 100644 --- a/plugins/tags/tag_visitor.cpp +++ b/plugins/tags/tag_visitor.cpp @@ -19,7 +19,7 @@ namespace golos { namespace plugins { namespace tags { std::set 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;