use a more specific input param

This commit is contained in:
AndyScherzinger 2018-06-01 16:43:38 +02:00
parent d663535ce6
commit 015aa06d79
No known key found for this signature in database
GPG key ID: 6CADC7E3523C308B

View file

@ -614,7 +614,7 @@ public class FileDownloader extends Service
.setProgress(0, 0, false);
if (needsToUpdateCredentials) {
configureUpdateCredentialsNotification(download);
configureUpdateCredentialsNotification(download.getAccount());
} else {
// TODO put something smart in showDetailsIntent
@ -639,11 +639,10 @@ public class FileDownloader extends Service
}
}
private void configureUpdateCredentialsNotification(DownloadFileOperation download) {
private void configureUpdateCredentialsNotification(Account account) {
// let the user update credentials with one click
Intent updateAccountCredentials = new Intent(this, AuthenticatorActivity.class);
updateAccountCredentials.putExtra(AuthenticatorActivity.EXTRA_ACCOUNT,
download.getAccount());
updateAccountCredentials.putExtra(AuthenticatorActivity.EXTRA_ACCOUNT, account);
updateAccountCredentials.putExtra(
AuthenticatorActivity.EXTRA_ACTION,
AuthenticatorActivity.ACTION_UPDATE_EXPIRED_TOKEN