mirror of
https://github.com/nextcloud/android.git
synced 2024-11-25 06:35:48 +03:00
Fix another NPE in FileDownloader
Signed-off-by: Álvaro Brey Vilas <alvaro.brey@nextcloud.com>
This commit is contained in:
parent
a84fc6297d
commit
dd07ea17dd
1 changed files with 1 additions and 1 deletions
|
@ -105,7 +105,7 @@ public class FileDownloader extends Service
|
|||
private ServiceHandler mServiceHandler;
|
||||
private IBinder mBinder;
|
||||
private OwnCloudClient mDownloadClient;
|
||||
private Optional<User> currentUser;
|
||||
private Optional<User> currentUser = Optional.empty();
|
||||
private FileDataStorageManager mStorageManager;
|
||||
|
||||
private IndexedForest<DownloadFileOperation> mPendingDownloads = new IndexedForest<>();
|
||||
|
|
Loading…
Reference in a new issue