ZIm/crates/zeta
Marshall Bowers e5b6194914
zeta: Fix update required notification not showing (#25588)
This PR fixes an issue introduced in #25530 that broke the notifications
that inform the user that a Zed update is required to continue using
edit prediction.

The issue is that the `Workspace` stored on the `Editor` is set _after_
the point we initialize Zeta, so capturing the `Workspace` at
construction time leads to it being `None`.

@ConradIrwin suggested that we could obtain the `Workspace` from the
`Window`, which does indeed do the trick.

I tested it both with and without this change by mocking the error
response, like so:

```rs
let response: Result<PredictEditsResponse, anyhow::Error> =
    Err(anyhow!(ZedUpdateRequiredError {
        minimum_version: SemanticVersion::new(0, 1, 0),
    }));
```

Release Notes:

- N/A
2025-02-25 20:02:43 +00:00
..
src zeta: Fix update required notification not showing (#25588) 2025-02-25 20:02:43 +00:00
Cargo.toml Remove dependents of language_models (#25511) 2025-02-24 22:46:45 +00:00
LICENSE-GPL Introduce staff-only inline completion provider (#21739) 2024-12-09 14:26:36 +01:00