We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 247a050 commit 4a3a876Copy full SHA for 4a3a876
ios/Modules/Helper/StorageHelper.swift
@@ -19,6 +19,10 @@ public class StorageHelper {
19
20
public static func clearDataAt(url: URL, component: String) {
21
let path = url.appendingPathComponent(component).path
22
- try? NativeFsModule.remove(path)
+ do {
23
+ try NativeFsModule.remove(path)
24
+ } catch {
25
+ NSLog("Failed to clear data at path: \(path), error: \(error.localizedDescription)")
26
+ }
27
}
28
0 commit comments