From 0a58b0c36f113b41984629aff45a9162305300a4 Mon Sep 17 00:00:00 2001 From: Syndamia Date: Wed, 7 Apr 2021 21:11:15 +0300 Subject: Fixed remove files from cloud workaround throwin error when called --- src/Services/DevHive.Services/Services/CloudinaryService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/Services/DevHive.Services/Services/CloudinaryService.cs b/src/Services/DevHive.Services/Services/CloudinaryService.cs index 078bb5d..61d06fc 100644 --- a/src/Services/DevHive.Services/Services/CloudinaryService.cs +++ b/src/Services/DevHive.Services/Services/CloudinaryService.cs @@ -51,7 +51,7 @@ namespace DevHive.Services.Services public async Task RemoveFilesFromCloud(List fileUrls) { // Workaround, this method isn't fully implemented yet - await Task.Run(null); + await Task.Run(() => {}); return true; } -- cgit v1.2.3