Skip to content

Commit

Permalink
refactor: remove async compatibility check from WebDav command
Browse files Browse the repository at this point in the history
Signed-off-by: simonsan <[email protected]>
  • Loading branch information
simonsan committed Nov 23, 2024
1 parent a8a6a42 commit 4e543f7
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/commands/webdav.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,11 +84,6 @@ impl WebDavCmd {
fn inner_run(&self, repo: CliIndexedRepo) -> Result<()> {
let config = RUSTIC_APP.config();

// webdav only works with async compatible repo
if !repo.is_async_compatible() {
return Err(anyhow!("Webdav is currently incompatible with the backend you are using. See https://github.com/rustic-rs/rustic/issues/1181 for more details."));
}

let path_template = config
.webdav
.path_template
Expand Down

0 comments on commit 4e543f7

Please sign in to comment.