refs #2513 bugfix: do not add empty entries

configurar-check-sizes
Natalia Serrano 2025-07-18 14:18:32 +02:00
parent de74923fd8
commit f833a31a82
1 changed files with 1 additions and 1 deletions

View File

@ -432,7 +432,7 @@ class ogLiveWorker(ServerWorker):
k, v = item.split ('=', maxsplit=1)
elem[k] = v
obj.append (elem)
if elem: obj.append (elem)
return obj