Browse Source

app: Fix compilation error

x 7 months ago
parent
commit
43f1d8d1ed
1 changed files with 1 additions and 1 deletions
  1. 1 1
      bin/app/src/main.rs

+ 1 - 1
bin/app/src/main.rs

@@ -297,7 +297,7 @@ async fn load_plugins(
     let sg_root2 = sg_root.clone();
     let fud = fud
         .setup(|me| async {
-            plugin::Fud::new(me, sg_root2, ex.clone()).await.expect("Fud pimpl setup")
+            plugin::FudPlugin::new(me, sg_root2, ex.clone()).await.expect("Fud pimpl setup")
         })
         .await;