agent: Don't error when the agent navigation history hasn't been persisted (#35863)

This causes us to log an unrecognizable error on every startup otherwise

Release Notes:

- N/A
This commit is contained in:
Lukas Wirth 2025-08-08 16:01:48 +02:00 committed by GitHub
parent 8430197df0
commit f0782aa243
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -212,7 +212,16 @@ impl HistoryStore {
fn load_recently_opened_entries(cx: &AsyncApp) -> Task<Result<Vec<HistoryEntryId>>> {
cx.background_spawn(async move {
let path = paths::data_dir().join(NAVIGATION_HISTORY_PATH);
let contents = smol::fs::read_to_string(path).await?;
let contents = match smol::fs::read_to_string(path).await {
Ok(it) => it,
Err(e) if e.kind() == std::io::ErrorKind::NotFound => {
return Ok(Vec::new());
}
Err(e) => {
return Err(e)
.context("deserializing persisted agent panel navigation history");
}
};
let entries = serde_json::from_str::<Vec<SerializedRecentOpen>>(&contents)
.context("deserializing persisted agent panel navigation history")?
.into_iter()