if parent is null, then do a regular check, no early exit

Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
This commit is contained in:
tobiasKaminsky 2019-10-02 08:02:44 +02:00
parent 9133158fd0
commit f6e24eb067
No known key found for this signature in database
GPG key ID: 0E00D4D47D0C5AF7

View file

@ -206,7 +206,7 @@ public class FileOperationsHelper {
// check if latest sync is >30s ago
OCFile parent = storageManager.getFileById(file.getParentId());
if (parent.getLastSyncDateForData() + 30 * 1000 > System.currentTimeMillis()) {
if (parent != null && parent.getLastSyncDateForData() + 30 * 1000 > System.currentTimeMillis()) {
EventBus.getDefault().post(new SyncEventFinished(intent));
return;