From f9fbf596476cb5c7f4673499ff06f12d24e851ca Mon Sep 17 00:00:00 2001 From: Riley Testut Date: Fri, 8 Dec 2023 14:50:42 -0600 Subject: [PATCH] Fixes unused variable warning for SourcesViewController preview --- AltStore/Sources/SourcesViewController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AltStore/Sources/SourcesViewController.swift b/AltStore/Sources/SourcesViewController.swift index c44e960c..704906c2 100644 --- a/AltStore/Sources/SourcesViewController.swift +++ b/AltStore/Sources/SourcesViewController.swift @@ -515,7 +515,7 @@ extension SourcesViewController: NSFetchedResultsControllerDelegate AppManager.shared.fetchSources { result in do { - let (sources, context) = try result.get() + let (_, context) = try result.get() try context.save() } catch