diff options
Diffstat (limited to 'src/channel/app.rs')
| -rw-r--r-- | src/channel/app.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/channel/app.rs b/src/channel/app.rs index 48e3e3c..3c92d76 100644 --- a/src/channel/app.rs +++ b/src/channel/app.rs @@ -78,7 +78,7 @@ impl<'a> Channels<'a> { channel: &channel::Id, subscribed_at: &DateTime, resume_at: Option<&str>, - ) -> Result<impl Stream<Item = broadcast::Message>, EventsError> { + ) -> Result<impl Stream<Item = broadcast::Message> + std::fmt::Debug, EventsError> { // Somewhat arbitrarily, expire after 90 days. let expire_at = subscribed_at.to_owned() - TimeDelta::days(90); |
