1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2024-11-16 15:06:44 +01:00

Merge pull request #6139 from subraizada3/dev

Only show 'download has started' toast when download is started
This commit is contained in:
Robin 2021-04-22 09:56:14 +02:00 committed by GitHub
commit ceb930aed6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -671,9 +671,6 @@ public class DownloadDialog extends DialogFragment
prefs.edit()
.putString(getString(R.string.last_used_download_type), selectedMediaType)
.apply();
Toast.makeText(context, getString(R.string.download_has_started),
Toast.LENGTH_SHORT).show();
}
private void checkSelectedDownload(final StoredDirectoryHelper mainStorage,
@ -929,6 +926,9 @@ public class DownloadDialog extends DialogFragment
DownloadManagerService.startMission(context, urls, storage, kind, threads,
currentInfo.getUrl(), psName, psArgs, nearLength, recoveryInfo);
Toast.makeText(context, getString(R.string.download_has_started),
Toast.LENGTH_SHORT).show();
dismiss();
}
}