Release Notes:

- N/A
This commit is contained in:
Conrad Irwin 2024-02-02 10:21:45 -07:00 committed by GitHub
parent a0b52cc69a
commit 1f6bd6760f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -78,7 +78,7 @@ pub fn init(cx: &mut AppContext) {
if let Some(channel_id) = channel_id { if let Some(channel_id) = channel_id {
let workspace = cx.view().clone(); let workspace = cx.view().clone();
cx.window_context().defer(move |cx| { cx.window_context().defer(move |cx| {
ChannelView::open(channel_id, workspace, cx).detach_and_log_err(cx) ChannelView::open(channel_id, None, workspace, cx).detach_and_log_err(cx)
}); });
} }
}); });