diff --git a/crates/collab/src/rpc/connection_pool.rs b/crates/collab/src/rpc/connection_pool.rs index 729e7c8533460c0789d74040e883d48c8b94af92..417edd66d66d7479f42fb09b01c7a5d9f05a6223 100644 --- a/crates/collab/src/rpc/connection_pool.rs +++ b/crates/collab/src/rpc/connection_pool.rs @@ -30,9 +30,9 @@ impl fmt::Display for ZedVersion { impl ZedVersion { pub fn can_collaborate(&self) -> bool { - // v0.198.4 is the first version where we no longer connect to Collab automatically. - // We reject any clients older than that to prevent them from connecting to Collab just for authentication. - if self.0 < SemanticVersion::new(0, 198, 4) { + // v0.204.1 was the first version after the auto-update bug. + // We reject any clients older than that to hope we can persuade them to upgrade. + if self.0 < SemanticVersion::new(0, 204, 1) { return false; }