fix: Do not error when an attribute is registered for ranking

This commit is contained in:
Clément Renault 2019-02-21 20:14:08 +01:00
parent 7f937eea5a
commit 8235b6efc9
No known key found for this signature in database
GPG Key ID: 0151CDAB43460DAE

View File

@ -78,7 +78,7 @@ impl<'a> SortByAttr<'a> {
None => return Err(SortByAttrError::AttributeNotFound),
};
if schema.props(attr).is_ranked() {
if !schema.props(attr).is_ranked() {
return Err(SortByAttrError::AttributeNotRegisteredForRanking);
}