Skip to content

Commit 88f4afc

Browse files
fixed filter param
1 parent 3fbb567 commit 88f4afc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/GetStream/StreamChat/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1722,7 +1722,7 @@ public function deleteReminder(string $messageId, string $userId): StreamRespons
17221722
public function queryReminders(string $userId, array $filterConditions = [], ?array $sort = null, array $options = []): StreamResponse
17231723
{
17241724
$params = array_merge($options, [
1725-
'filter_conditions' => $filterConditions,
1725+
'filter' => $filterConditions,
17261726
'sort' => $sort ?? [['field' => 'remind_at', 'direction' => 1]],
17271727
'user_id' => $userId
17281728
]);

0 commit comments

Comments
 (0)