diff --git a/network/cloud_sync/webdav.c b/network/cloud_sync/webdav.c index 6f68ae83a4..57d6922e29 100644 --- a/network/cloud_sync/webdav.c +++ b/network/cloud_sync/webdav.c @@ -506,6 +506,10 @@ static bool webdav_sync_begin(cloud_sync_complete_handler_t cb, void *user_data) if (string_is_empty(url)) return false; +#ifndef HAVE_SSL + if (strncmp(url, "https", 5) == 0) + return false; +#endif /* TODO: LOCK? */ if (!strstr(url, "://"))