summaryrefslogtreecommitdiffstats
path: root/zellij-utils/src/input/layout.rs
diff options
context:
space:
mode:
Diffstat (limited to 'zellij-utils/src/input/layout.rs')
-rw-r--r--zellij-utils/src/input/layout.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/zellij-utils/src/input/layout.rs b/zellij-utils/src/input/layout.rs
index c5dbd9947..cede261e7 100644
--- a/zellij-utils/src/input/layout.rs
+++ b/zellij-utils/src/input/layout.rs
@@ -571,7 +571,7 @@ impl RunPluginLocation {
match self {
RunPluginLocation::File(pathbuf) => format!("file:{}", pathbuf.display()),
RunPluginLocation::Zellij(plugin_tag) => format!("zellij:{}", plugin_tag),
- RunPluginLocation::Remote(url) => format!("remote:{}", url),
+ RunPluginLocation::Remote(url) => String::from(url),
}
}
}
@@ -584,7 +584,7 @@ impl From<&RunPluginLocation> for Url {
path.clone().into_os_string().into_string().unwrap()
),
RunPluginLocation::Zellij(tag) => format!("zellij:{}", tag),
- RunPluginLocation::Remote(url) => format!("remote:{}", url),
+ RunPluginLocation::Remote(url) => String::from(url),
};
Self::parse(&url).unwrap()
}