aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/repository/vcs/svn_driver.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/src/repository/vcs/svn_driver.rs')
-rw-r--r--crates/shirabe/src/repository/vcs/svn_driver.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/crates/shirabe/src/repository/vcs/svn_driver.rs b/crates/shirabe/src/repository/vcs/svn_driver.rs
index 0a05d84..2e649df 100644
--- a/crates/shirabe/src/repository/vcs/svn_driver.rs
+++ b/crates/shirabe/src/repository/vcs/svn_driver.rs
@@ -194,7 +194,6 @@ impl SvnDriver {
.map(PhpMixed::from)
.unwrap_or(PhpMixed::Null),
JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES,
- None,
);
self.inner
.cache
@@ -474,7 +473,7 @@ impl SvnDriver {
/// An absolute path (leading '/') is converted to a file:// url.
pub(crate) fn normalize_url(url: &str) -> String {
- let fs = Filesystem::new();
+ let fs = Filesystem::new(None);
if fs.is_absolute_path(url) {
return format!("file://{}", strtr(url, "\\", "/"));
}