This commit is contained in:
spiral 2021-09-26 22:50:08 -04:00
parent 0517c76abf
commit fb4aaad19f
No known key found for this signature in database
GPG key ID: A6059F0CA0E1BD31
5 changed files with 13 additions and 13 deletions

View file

@ -132,7 +132,7 @@ namespace Myriad.Rest
var url = $"/webhooks/{webhookId}/{webhookToken}/messages/{messageId}";
if (threadId != null)
url += $"?thread_id={threadId}";
return _client.Patch<Message>(url, ("EditWebhookMessage", webhookId), request)!;
}