Actually update remote collab capabilities (#35809)

Follow-up of https://github.com/zed-industries/zed/pull/35682

Release Notes:

- N/A
This commit is contained in:
Kirill Bulatov 2025-08-07 20:58:33 +03:00 committed by GitHub
parent e2e147ab0e
commit 53b69d29c5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -699,7 +699,10 @@ impl Database {
language_server::Column::ProjectId,
language_server::Column::Id,
])
.update_column(language_server::Column::Name)
.update_columns([
language_server::Column::Name,
language_server::Column::Capabilities,
])
.to_owned(),
)
.exec(&*tx)