forked from MirrorHub/synapse
Extend individual list results into the main return list, don't append
This commit is contained in:
parent
b3511adb92
commit
f0c73a1e7a
1 changed files with 1 additions and 1 deletions
|
@ -131,7 +131,7 @@ class ApplicationServicesHandler(object):
|
|||
service, protocol, fields
|
||||
)
|
||||
if result:
|
||||
results.append(result)
|
||||
results.extend(result)
|
||||
|
||||
defer.returnValue(results)
|
||||
|
||||
|
|
Loading…
Reference in a new issue