Fix displaying storage with a connected device, the MainForm.nodeviceonstart was interrupting displaying storage, should only check for when a device is connected, which it does above this method.
This commit is contained in:
@@ -784,7 +784,7 @@ namespace AndroidSideloader
|
||||
public async void showAvailableSpace()
|
||||
{
|
||||
string AvailableSpace = string.Empty;
|
||||
if (!Properties.Settings.Default.nodevicemode | !MainForm.nodeviceonstart & DeviceConnected)
|
||||
if (!Properties.Settings.Default.nodevicemode | DeviceConnected)
|
||||
{
|
||||
try
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user