Merge pull request #6817 from menloresearch/fix/conversation-saving

we use POST to update now
This commit is contained in:
locnguyen1986 2025-10-24 14:51:57 +07:00 committed by GitHub
commit 28ed5e2af2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -48,7 +48,7 @@ export class RemoteApi {
return this.authService.makeAuthenticatedRequest<ConversationResponse>( return this.authService.makeAuthenticatedRequest<ConversationResponse>(
url, url,
{ {
method: 'PATCH', method: 'POST',
body: JSON.stringify(data), body: JSON.stringify(data),
} }
) )