diff options
| author | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-04-07 21:11:15 +0300 |
|---|---|---|
| committer | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-04-07 21:11:15 +0300 |
| commit | 0a58b0c36f113b41984629aff45a9162305300a4 (patch) | |
| tree | 9414bff738eec2eced3fdb77551502b407c4087b /src/Services/DevHive.Services | |
| parent | c713abc05138620d0b32a8f4648f4924ae101502 (diff) | |
| download | DevHive-0a58b0c36f113b41984629aff45a9162305300a4.tar DevHive-0a58b0c36f113b41984629aff45a9162305300a4.tar.gz DevHive-0a58b0c36f113b41984629aff45a9162305300a4.zip | |
Fixed remove files from cloud workaround throwin error when called
Diffstat (limited to 'src/Services/DevHive.Services')
| -rw-r--r-- | src/Services/DevHive.Services/Services/CloudinaryService.cs | 2 |
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; } |
