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 073e7e3 commit d345435Copy full SHA for d345435
apps/application/serializers/common.py
@@ -98,7 +98,7 @@ def get_chat_user(self, asker=None):
98
if self.chat_user_type == ChatUserType.CHAT_USER.value and chat_user_model:
99
chat_user = QuerySet(chat_user_model).filter(id=self.chat_user_id).first()
100
return {
101
- 'id': chat_user.id,
+ 'id': str(chat_user.id),
102
'email': chat_user.email,
103
'phone': chat_user.phone,
104
'nick_name': chat_user.nick_name,
0 commit comments