From 3492f93c83e07f545b2ad76292164a2f4f6619e3 Mon Sep 17 00:00:00 2001 From: yyc12345 Date: Thu, 25 Jun 2026 15:38:36 +0800 Subject: [PATCH] fix: fix the reference to unlink from link --- wfassoc-exec/src/runner.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wfassoc-exec/src/runner.rs b/wfassoc-exec/src/runner.rs index fb89a97..41df10c 100644 --- a/wfassoc-exec/src/runner.rs +++ b/wfassoc-exec/src/runner.rs @@ -125,7 +125,7 @@ fn run_ext_unlink( ) -> Result<()> { let exts = stringified_exts_to_indices(&program, exts)?; for index in exts { - program.link_ext(scope, index)?; + program.unlink_ext(scope, index)?; } println!("File extension now is unlinked.");