Skip to content

Commit 06f275c

Browse files
committed
Fix plugin load order
1 parent fea1c18 commit 06f275c

File tree

1 file changed

+2
-2
lines changed
  • src/vonal_daemon/plugins

1 file changed

+2
-2
lines changed

src/vonal_daemon/plugins/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,10 +79,10 @@ impl PluginManager {
7979
vec![
8080
#[cfg(feature = "math_plugin")]
8181
"math_plugin".to_string(),
82-
#[cfg(feature = "launcher_plugin")]
83-
"launcher_plugin".to_string(),
8482
#[cfg(feature = "pass_plugin")]
8583
"pass_plugin".to_string(),
84+
#[cfg(feature = "launcher_plugin")]
85+
"launcher_plugin".to_string(),
8686
],
8787
)?;
8888

0 commit comments

Comments
 (0)