Browse Source

use a more specific input param

AndyScherzinger 6 years ago
parent
commit
015aa06d79

+ 3 - 4
src/main/java/com/owncloud/android/files/services/FileDownloader.java

@@ -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