mirror of
https://github.com/KDE/kdeconnect-android
synced 2025-09-01 22:55:10 +00:00
Fix bug concerning incorrect process status when sharing large files (>2.15GB)
This commit is contained in:
committed by
Nicolas Fella
parent
b81d3a82e5
commit
2c23b92bdd
@@ -162,7 +162,7 @@ public class FilesHelper {
|
|||||||
// situations were we don't know the size (for instance, if the file is
|
// situations were we don't know the size (for instance, if the file is
|
||||||
// not local to the device)
|
// not local to the device)
|
||||||
if (!cursor.isNull(sizeColumnIndex)) {
|
if (!cursor.isNull(sizeColumnIndex)) {
|
||||||
size = cursor.getInt(sizeColumnIndex);
|
size = cursor.getLong(sizeColumnIndex);
|
||||||
}
|
}
|
||||||
|
|
||||||
lastModified = getLastModifiedTime(context, uri);
|
lastModified = getLastModifiedTime(context, uri);
|
||||||
|
Reference in New Issue
Block a user