File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -351,7 +351,7 @@ struct PhotoBackupSettingsView: View {
351351
352352 @concurrent private func loadAlbums( ) async {
353353 dispatchPrecondition ( condition: . notOnQueue( . main) )
354-
354+
355355 var albums : [ PHAssetCollection ] = [ ]
356356 let options = PHFetchOptions ( )
357357 options. sortDescriptors = [ NSSortDescriptor ( key: " localizedTitle " , ascending: true ) ]
@@ -360,7 +360,7 @@ struct PhotoBackupSettingsView: View {
360360 userAlbums. enumerateObjects { ( collection, _, _) in
361361 albums. append ( collection)
362362 }
363-
363+
364364 DispatchQueue . main. async {
365365 self . albums = albums
366366 }
@@ -373,7 +373,7 @@ struct PhotoBackupSettingsView: View {
373373 systemAlbums. enumerateObjects { ( collection, _, _) in
374374 smartAlbums. append ( collection)
375375 }
376-
376+
377377 DispatchQueue . main. async {
378378 self . smartAlbums = smartAlbums
379379 }
You can’t perform that action at this time.
0 commit comments