Skip to content

Commit 33ffb79

Browse files
author
Max Klyga
committed
Fix app update method
1 parent e998693 commit 33ffb79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stream_chat/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def create_token(self, user_id, exp=None):
9595
return jwt.encode(payload, self.api_secret, algorithm="HS256")
9696

9797
def update_app_settings(self, **settings):
98-
return self.patch("app", **settings)
98+
return self.patch("app", data=settings)
9999

100100
def get_app_settings(self):
101101
return self.get("app")

0 commit comments

Comments
 (0)