Fixed another case of wrong-placed strvalue as mentioned in #699.
This commit is contained in:
parent
c20a23a3d4
commit
58d380fe7d
1 changed files with 1 additions and 1 deletions
|
|
@ -97,7 +97,7 @@ class TypedObjectManager(idmapper.manager.SharedMemoryManager):
|
||||||
if category:
|
if category:
|
||||||
query.append(("db_attributes__db_category", category))
|
query.append(("db_attributes__db_category", category))
|
||||||
if strvalue:
|
if strvalue:
|
||||||
query.append(("db_attributes__db_strvalue", value))
|
query.append(("db_attributes__db_strvalue", strvalue))
|
||||||
elif value:
|
elif value:
|
||||||
# strvalue and value are mutually exclusive
|
# strvalue and value are mutually exclusive
|
||||||
query.append(("db_attributes__db_value", value))
|
query.append(("db_attributes__db_value", value))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue