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 db415ec commit 0219e45Copy full SHA for 0219e45
sentry/src/lib.rs
@@ -264,6 +264,8 @@ async fn channels_router<A: Adapter + 'static>(
264
]);
265
req.extensions_mut().insert(param);
266
267
+ let req = chain(req, app, vec![Box::new(channel_load)]).await?;
268
+
269
list_channel_event_aggregates(req, app).await
270
} else if let (Some(caps), &Method::POST) =
271
(CREATE_EVENTS_BY_CHANNEL_ID.captures(&path), method)
@@ -278,8 +280,6 @@ async fn channels_router<A: Adapter + 'static>(
278
280
279
281
282
- let req = chain(req, app, vec![Box::new(channel_load)]).await?;
-
283
insert_events(req, app).await
284
} else {
285
Err(ResponseError::NotFound)
0 commit comments