server/util: fix API queries for empty ?options
This commit is contained in:
parent
e21a31e72f
commit
42666706d9
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ def get_serialization_options(ctx):
|
|||
def serialize_entity(entity, field_factories, options):
|
||||
if not entity:
|
||||
return None
|
||||
if not options:
|
||||
if not options or len(options) == 0:
|
||||
options = field_factories.keys()
|
||||
ret = {}
|
||||
for key in options:
|
||||
|
|
Loading…
Reference in a new issue