From e96325dbdcf57a88f3ee0dfc3026b53b46ec0750 Mon Sep 17 00:00:00 2001 From: simonsan <14062932+simonsan@users.noreply.github.com> Date: Sat, 23 Nov 2024 16:55:33 +0100 Subject: [PATCH] Revert "feat(async): use `is_async_compatible()` to determine backend incompatibility and error out (#1355)" This reverts commit c3e2557743a00d4cae3745e4ddcd18f68f75e9ad. --- src/commands/webdav.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/commands/webdav.rs b/src/commands/webdav.rs index 78dc94f35..90b79072c 100644 --- a/src/commands/webdav.rs +++ b/src/commands/webdav.rs @@ -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