From 66ef234f02029b50741a36ceb7b6586da3ff3cef Mon Sep 17 00:00:00 2001 From: Riley Testut Date: Wed, 11 Nov 2020 16:38:45 -0800 Subject: [PATCH] [AltServer] Fixes wireless devices not appearing in devices list --- AltServer/AppDelegate.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AltServer/AppDelegate.swift b/AltServer/AppDelegate.swift index 773d6305..6fc4c464 100644 --- a/AltServer/AppDelegate.swift +++ b/AltServer/AppDelegate.swift @@ -259,7 +259,7 @@ extension AppDelegate: NSMenuDelegate { guard menu == self.appMenu else { return } - self.connectedDevices = ALTDeviceManager.shared.connectedDevices + self.connectedDevices = ALTDeviceManager.shared.availableDevices self.launchAtLoginMenuItem.target = self self.launchAtLoginMenuItem.action = #selector(AppDelegate.toggleLaunchAtLogin(_:))