We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 891b47c commit e6b978cCopy full SHA for e6b978c
1 file changed
lara/views/tweaks/DecryptView.swift
@@ -257,10 +257,10 @@ struct DecryptView: View {
257
258
// test?
259
let frameworksPath = destAppPath + "/Frameworks"
260
- if fm.fileExists(atPath: frameworksPath) {
+ if FileManager.default.fileExists(atPath: frameworksPath) {
261
let contents: [String]?
262
do {
263
- contents = try fm.contentsOfDirectory(atPath: frameworksPath)
+ contents = try FileManager.default.contentsOfDirectory(atPath: frameworksPath)
264
} catch {
265
DispatchQueue.main.async {
266
decryptingbid = nil
0 commit comments