diff options
| author | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-03-29 13:03:10 +0300 |
|---|---|---|
| committer | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-03-29 13:03:10 +0300 |
| commit | 0cf2a3c99141f878168271e53999cdacac95f3c4 (patch) | |
| tree | 1b37463f89d56c74bf7a093f8a2a876977e9c3ac /src/Services | |
| parent | 92c8160d4796c6a4cefb5770f4f4ff1e082e3f41 (diff) | |
| download | DevHive-0cf2a3c99141f878168271e53999cdacac95f3c4.tar DevHive-0cf2a3c99141f878168271e53999cdacac95f3c4.tar.gz DevHive-0cf2a3c99141f878168271e53999cdacac95f3c4.zip | |
Fixed warnings for commented code and async cloudinary method
Diffstat (limited to 'src/Services')
| -rw-r--r-- | src/Services/DevHive.Services/Services/CloudinaryService.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Services/DevHive.Services/Services/CloudinaryService.cs b/src/Services/DevHive.Services/Services/CloudinaryService.cs index 6e2e975..05600cc 100644 --- a/src/Services/DevHive.Services/Services/CloudinaryService.cs +++ b/src/Services/DevHive.Services/Services/CloudinaryService.cs @@ -52,6 +52,9 @@ namespace DevHive.Services.Services public async Task<bool> RemoveFilesFromCloud(List<string> fileUrls) { + // Workaround, this method isn't fully implemented yet + await Task.Run(null); + return true; } } |
