X-Git-Url: http://git.linex4red.de/pub/Android/ownCloud.git/blobdiff_plain/25f307c98adbad05ed1448684651d8780b8ae59b..7fead3cb22a70f8b2bb23a7e981c5ee3708dd523:/src/com/owncloud/android/files/services/FileDownloader.java diff --git a/src/com/owncloud/android/files/services/FileDownloader.java b/src/com/owncloud/android/files/services/FileDownloader.java index b346ed77..50a8c49f 100644 --- a/src/com/owncloud/android/files/services/FileDownloader.java +++ b/src/com/owncloud/android/files/services/FileDownloader.java @@ -312,7 +312,7 @@ public class FileDownloader extends Service implements OnDatatransferProgressLis /// includes a pending intent in the notification showing the details view of the file Intent showDetailsIntent = new Intent(this, FileDetailActivity.class); showDetailsIntent.putExtra(FileDetailFragment.EXTRA_FILE, download.getFile()); - showDetailsIntent.putExtra(FileDownloader.EXTRA_ACCOUNT, download.getAccount()); + showDetailsIntent.putExtra(FileDetailFragment.EXTRA_ACCOUNT, download.getAccount()); showDetailsIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); mNotification.contentIntent = PendingIntent.getActivity(getApplicationContext(), 0, showDetailsIntent, PendingIntent.FLAG_UPDATE_CURRENT);