Fix temporary file deletion for a voice message (#7240)

Signed-off-by: Nicolas Mauri <nicolasm@element.io>
This commit is contained in:
Nicolas Mauri
2023-01-05 16:43:04 +01:00
parent 8df9c96774
commit b334a4a46b
@@ -364,7 +364,8 @@ public class VoiceMessageController: NSObject, VoiceMessageToolbarViewDelegate,
}
private func deleteRecordingAtURL(_ url: URL?) {
guard let url = url, FileManager.default.fileExists(atPath: url.absoluteString) else {
// Fix: use url.path instead of url.absoluteString when using FileManager otherwise the url seems to be percent encoded and the file is not found.
guard let url = url, FileManager.default.fileExists(atPath: url.path) else {
return
}