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
..
2025-01-27 04:00:27 +00:00
2025-02-24 16:10:26 -05:00
2025-01-26 03:02:45 +00:00
2025-02-24 22:27:26 +00:00
2025-02-24 22:46:45 +00:00
2025-02-25 13:24:51 -06:00
2025-02-24 18:10:12 -05:00
2025-02-19 15:32:29 +00:00
2025-02-18 20:30:33 +00:00
2025-01-26 03:02:45 +00:00
2025-02-24 09:37:07 -05:00
2025-01-26 03:02:45 +00:00
2025-02-18 20:30:33 +00:00
2025-02-17 11:32:04 -03:00
2025-02-24 20:28:20 +00:00
2025-02-25 13:52:42 -05:00
2025-01-27 04:00:27 +00:00
2025-02-24 23:13:13 -05:00
2025-02-18 20:30:33 +00:00
2025-02-18 20:30:33 +00:00
2025-02-19 20:33:18 +00:00
2025-02-20 17:58:50 +00:00
2025-01-17 17:39:22 +01:00
2025-02-25 12:12:09 -05:00
2025-02-21 09:20:53 -05:00
2025-01-17 17:39:22 +01:00
2025-02-18 20:30:33 +00:00
2025-02-11 04:55:40 +00:00
2025-02-21 09:20:53 -05:00
2025-02-21 09:20:53 -05:00
2025-02-18 20:30:33 +00:00
2025-01-26 03:02:45 +00:00
2025-02-25 15:51:55 +00:00
2025-02-20 19:07:16 +00:00
2025-02-18 20:30:33 +00:00
2025-01-27 13:40:59 -05:00
2025-02-25 15:24:30 +00:00
2025-01-26 03:02:45 +00:00
2025-02-26 01:05:00 +05:30
2025-02-19 15:32:29 +00:00
2025-02-18 17:47:25 +00:00
2025-02-22 18:05:36 +00:00
2025-02-05 18:17:19 +00:00
2025-02-22 18:05:36 +00:00
2025-02-24 19:19:06 +00:00
2025-02-13 21:48:09 +00:00
2025-02-18 20:30:33 +00:00
2025-02-21 17:04:44 -05:00
2025-02-15 00:35:13 +00:00
2025-02-25 17:36:07 +08:00
2025-01-30 23:53:36 -07:00
2025-02-19 15:32:29 +00:00
2025-02-24 18:29:52 +00:00
2025-02-20 19:11:32 -05:00
2025-02-25 00:28:35 -05:00
2025-02-14 15:41:49 +01:00
2025-02-24 07:29:55 +00:00
2025-02-25 03:10:45 +00:00
2025-02-22 10:19:23 -05:00
2025-01-31 02:00:55 +00:00
2025-01-26 03:02:45 +00:00
2025-02-12 07:32:17 -08:00
2025-02-18 20:30:33 +00:00
2025-01-26 03:02:45 +00:00
2025-02-10 22:28:56 -03:00
2025-02-25 15:41:13 +00:00
2025-01-26 23:37:34 +00:00
2025-02-18 20:30:33 +00:00
2025-02-24 12:11:00 -05:00
2025-01-26 23:37:34 +00:00
2025-02-25 12:15:15 -05:00
2025-02-19 01:40:07 +00:00
2025-02-25 12:15:15 -05:00
2025-01-28 19:04:21 -05:00
2025-02-18 14:27:00 +00:00
2025-02-24 19:10:30 -05:00
2025-02-19 23:32:51 +00:00
2025-02-18 20:30:33 +00:00
2025-02-16 20:24:12 +00:00
2025-01-31 22:28:11 +00:00
2025-02-21 17:05:14 +01:00
2025-02-19 08:55:36 -07:00
2025-02-18 20:30:33 +00:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-02-15 01:33:30 +05:30
2025-02-14 13:07:41 -05:00
2025-02-26 01:05:00 +05:30
2025-01-30 08:56:02 -08:00
2025-01-27 04:00:27 +00:00
2025-01-26 03:02:45 +00:00
2025-02-19 11:06:20 -05:00
2025-02-24 19:19:06 +00:00
2025-02-20 18:09:33 -03:00
2025-02-24 19:19:06 +00:00
2025-02-09 16:51:37 -07:00
2025-02-17 19:18:12 -03:00
2025-02-14 15:41:49 +01:00
2025-02-25 09:39:09 +00:00
2025-02-25 12:03:14 -05:00
2025-02-05 14:30:09 +00:00
2025-02-18 20:30:33 +00:00
2025-02-24 18:29:52 +00:00
2025-02-21 06:24:02 -03:00
2025-02-05 14:30:09 +00:00
2025-02-01 06:19:29 +00:00
2025-02-19 15:32:29 +00:00
2025-02-18 20:30:33 +00:00
2025-02-23 15:24:43 +00:00
2025-02-17 11:42:22 -05:00
2025-02-19 15:32:29 +00:00
2025-02-18 03:23:48 +00:00
2025-02-06 00:09:37 +00:00
2025-01-31 01:22:10 +00:00
2025-02-20 05:23:10 +00:00
2025-02-19 15:32:29 +00:00
2025-01-17 17:39:22 +01:00
2025-02-18 20:30:33 +00:00
2025-02-12 06:47:08 +05:30
2025-02-21 06:24:02 -03:00
2025-01-26 03:02:45 +00:00
2025-01-28 10:37:48 +01:00
2025-01-27 04:00:27 +00:00
2025-01-26 03:02:45 +00:00
2025-02-05 14:30:09 +00:00
2025-01-26 03:02:45 +00:00
2025-02-21 09:20:53 -05:00
2025-01-17 17:39:22 +01:00
2025-02-12 19:46:42 +00:00
2025-02-07 22:06:37 +00:00
2025-01-26 03:02:45 +00:00
2025-02-14 15:41:49 +01:00
2025-02-18 20:30:33 +00:00
2025-02-14 22:03:59 -07:00
2025-01-17 17:39:22 +01:00
2025-02-06 02:09:24 -07:00
2025-02-19 15:32:29 +00:00
2025-02-22 00:05:52 +05:30
2025-02-24 23:13:13 -05:00
2025-02-24 19:19:06 +00:00
2025-02-18 17:47:25 +00:00
2025-01-31 01:22:10 +00:00
2025-02-20 00:02:24 +00:00
2025-02-12 15:57:08 -07:00
2025-02-21 22:02:40 +00:00
2025-02-19 15:32:29 +00:00
2025-02-25 15:41:13 +00:00
2025-01-26 03:02:45 +00:00
2025-02-21 06:24:02 -03:00
2025-02-12 14:46:42 -08:00
2025-02-05 14:30:09 +00:00
2025-02-25 12:03:14 -05:00
2025-01-26 03:02:45 +00:00
2025-02-21 06:52:34 +00:00
2025-02-25 15:41:13 +00:00
2025-02-25 17:36:07 +08:00
2025-02-25 20:02:43 +00:00
2025-02-14 13:27:48 +02:00
2025-02-25 20:02:43 +00:00