GH-2382 fix exact version filter not being exact...

This commit is contained in:
Petr Mrázek 2018-11-01 00:34:31 +01:00
parent 59e2f52db7
commit e4ce74e622

View File

@ -13,7 +13,7 @@ ExactFilter::ExactFilter(const QString& pattern) : pattern(pattern){}
ExactFilter::~ExactFilter(){}
bool ExactFilter::accepts(const QString& value)
{
return value.contains(pattern);
return value == pattern;
}
RegexpFilter::RegexpFilter(const QString& regexp, bool invert)