From 61b770ca958afa7e5eca4c50f5e06bdf3ed7a94a Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Mon, 10 Aug 2026 16:16:31 +0800 Subject: refactor(asset): replace wildcard match with explicit variants --- mingling_core/src/comp.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mingling_core/src/comp.rs') diff --git a/mingling_core/src/comp.rs b/mingling_core/src/comp.rs index 7312a06..f2e50c8 100644 --- a/mingling_core/src/comp.rs +++ b/mingling_core/src/comp.rs @@ -183,7 +183,7 @@ impl CompletionHelper { let default = default_completion::

(ctx); match fallback { Suggest::FileCompletion => default, - _ => fallback.combine(default), + Suggest::Suggest(_) => fallback.combine(default), } } }, -- cgit