summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--mullvad-daemon/src/main.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/mullvad-daemon/src/main.rs b/mullvad-daemon/src/main.rs
index 2c7c0c05dd..4341c29ff1 100644
--- a/mullvad-daemon/src/main.rs
+++ b/mullvad-daemon/src/main.rs
@@ -218,7 +218,8 @@ impl Daemon {
ErrorKind::DaemonIsAlreadyRunning
);
- let rpc_manager = mullvad_rpc::MullvadRpcFactory::new();
+ let rpc_manager = mullvad_rpc::MullvadRpcFactory::with_resource_dir(&resource_dir);
+
let (rpc_handle, http_handle, tokio_remote) =
mullvad_rpc::event_loop::create(move |core| {
let handle = core.handle();