feat: allow donation-uploads while in offline-mode

This commit is contained in:
Fenopy
2023-03-23 16:18:46 -05:00
parent ea19b936cb
commit a75bd355cf
2 changed files with 7 additions and 1 deletions

View File

@@ -983,6 +983,12 @@ namespace AndroidSideloader
{
ADB.WakeDevice();
if (!HasInternet)
{
notify("You are not connected to the Internet!");
return;
}
if (m_combo.SelectedIndex == -1)
{
notify("Please select an app first");

View File

@@ -144,7 +144,7 @@ namespace AndroidSideloader
public static ProcessOutput runRcloneCommand_UploadConfig(string command)
{
if (!MainForm.HasInternet || MainForm.isOffline)
if (!MainForm.HasInternet)
{
return new ProcessOutput("", "No internet");
}