Skip to content

Commit ba2e001

Browse files
committed
Encode metadata
1 parent 8c8e457 commit ba2e001

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/lib/Client/HttpPubSubTrait.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,9 @@ public function publishEventAsync(
4141
string $contentType = 'application/json'
4242
): PromiseInterface {
4343
$options = [
44-
'query' => $metadata,
44+
'query' => array_merge(
45+
...array_map(fn($key, $value) => ["metadata.$key" => $value], array_keys($metadata), $metadata)
46+
),
4547
'body' => $this->serializer->as_json($data),
4648
'header' => []
4749
];

0 commit comments

Comments
 (0)