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 5d7a74d commit db912b7Copy full SHA for db912b7
src/Oak.Webhooks/Events/Implementations/DynamicWebhookEventHandler.cs
@@ -21,7 +21,7 @@ public DynamicWebhookEventHandler(IWebhookClientFactory webhookClientFactory)
21
22
public Task HandleEventAsync(OnPostEmitEvent args)
23
{
24
- if (args.EmittedEvent.GetType() != typeof(IWebhookEvent<>))
+ if (args.Value.GetType() != typeof(IWebhookEvent<>))
25
return Task.CompletedTask;
26
27
var url = (string)args.GetType()?.GetProperty("Url")?.GetValue(args);
0 commit comments