Skip to content

Commit

Permalink
Fix Subscription not providing Updates for Array Types
Browse files Browse the repository at this point in the history
closes: #26
  • Loading branch information
wba2hi committed May 8, 2024
1 parent bfa9205 commit aa2d545
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kuksa-client/kuksa_client/cli_backend/grpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

def callback_wrapper(callback: Callable[[str], None]) -> Callable[[Iterable[EntryUpdate]], None]:
def wrapper(updates: Iterable[EntryUpdate]) -> None:
callback(json.dumps([update.to_dict() for update in updates]))
callback(json.dumps([update.to_dict() for update in updates], cls=DatabrokerEncoder))
return wrapper


Expand Down

0 comments on commit aa2d545

Please sign in to comment.