From 55d3c09b6b51e9557c33cde9b3a964a8cb7f39e9 Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Mon, 21 Nov 2022 12:34:36 -0800 Subject: [PATCH] Fix file extension retrieval for single-file worktrees Previously, we used the file's 'path' method, which only returns the relative path from the worktree root. --- crates/editor/src/editor.rs | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/crates/editor/src/editor.rs b/crates/editor/src/editor.rs index dd5934f979..426215eb15 100644 --- a/crates/editor/src/editor.rs +++ b/crates/editor/src/editor.rs @@ -73,6 +73,7 @@ use std::{ mem, num::NonZeroU32, ops::{Deref, DerefMut, Range, RangeInclusive}, + path::Path, sync::Arc, time::{Duration, Instant}, }; @@ -6536,15 +6537,13 @@ impl Editor { .as_singleton() .and_then(|b| b.read(cx).file()), ) { - project.read(cx).client().report_event( - name, - json!({ - "File Extension": file - .path() - .extension() - .and_then(|e| e.to_str()) - }), - ); + let extension = Path::new(file.file_name(cx)) + .extension() + .and_then(|e| e.to_str()); + project + .read(cx) + .client() + .report_event(name, json!({ "File Extension": extension })); } } }