We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb0249a commit 2dfa987Copy full SHA for 2dfa987
packages/message/src/aggregate/impl.ts
@@ -31,7 +31,7 @@ export class AggregateMessageClient {
31
const response = await axios.get<AggregateGetResponse<T>>(`${this.apiServer}/api/v0/aggregates/${address}.json`, {
32
socketPath: getSocketPath(),
33
params: {
34
- keys: keys ? keys.join(',') : undefined,
+ keys: keys.length > 0 ? keys.join(',') : undefined,
35
},
36
})
37
0 commit comments