aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSyndamia <kamen.d.mladenov@protonmail.com>2021-04-07 21:11:15 +0300
committerSyndamia <kamen.d.mladenov@protonmail.com>2021-04-07 21:11:15 +0300
commit0a58b0c36f113b41984629aff45a9162305300a4 (patch)
tree9414bff738eec2eced3fdb77551502b407c4087b
parentc713abc05138620d0b32a8f4648f4924ae101502 (diff)
downloadDevHive-0a58b0c36f113b41984629aff45a9162305300a4.tar
DevHive-0a58b0c36f113b41984629aff45a9162305300a4.tar.gz
DevHive-0a58b0c36f113b41984629aff45a9162305300a4.zip
Fixed remove files from cloud workaround throwin error when called
-rw-r--r--src/Services/DevHive.Services/Services/CloudinaryService.cs2
1 files changed, 1 insertions, 1 deletions
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<bool> RemoveFilesFromCloud(List<string> fileUrls)
{
// Workaround, this method isn't fully implemented yet
- await Task.Run(null);
+ await Task.Run(() => {});
return true;
}