Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
valeriansaliou committed Aug 1, 2024
1 parent f91b966 commit 830e165
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crisp/website_conversation.go
Original file line number Diff line number Diff line change
Expand Up @@ -1646,7 +1646,7 @@ func (service *WebsiteService) AssignConversationRouting(websiteID string, sessi
// UpdateConversationInbox updates inbox used for conversation.
func (service *WebsiteService) UpdateConversationInbox(websiteID string, sessionID string, inboxID *string) (*Response, error) {
url := fmt.Sprintf("website/%s/conversation/%s/inbox", websiteID, sessionID)
req, _ := service.client.NewRequest("PATCH", url, ConversationInboxUpdate{&inboxID})
req, _ := service.client.NewRequest("PATCH", url, ConversationInboxUpdate{inboxID})

return service.client.Do(req, nil)
}
Expand Down

0 comments on commit 830e165

Please sign in to comment.