mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-18 16:02:15 +01:00
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
|
service, protocol, fields
|
||||||
)
|
)
|
||||||
if result:
|
if result:
|
||||||
results.append(result)
|
results.extend(result)
|
||||||
|
|
||||||
defer.returnValue(results)
|
defer.returnValue(results)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue