Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit abb82125 authored by tibbi's avatar tibbi
Browse files

do copy/delete instead of Move on Oreo as it's apparently glitchy

parent 22afd364
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@ buildscript {
        propMinSdkVersion = 16
        propTargetSdkVersion = propCompileSdkVersion
        propVersionCode = 1
        propVersionName = '3.4.12'
        propVersionName = '3.4.13'
        kotlin_version = '1.2.10'
        support_libs = '27.0.2'
    }
+1 −1
Original line number Diff line number Diff line
@@ -186,7 +186,7 @@ open class BaseSimpleActivity : AppCompatActivity() {
                toast(R.string.copying)
                startCopyMove(files, destinationFolder, isCopyOperation, copyPhotoVideoOnly)
            } else {
                if (isPathOnSD(source) || isPathOnSD(destination) || files.first().isDirectory) {
                if (isPathOnSD(source) || isPathOnSD(destination) || files.first().isDirectory || isOreoPlus()) {
                    handleSAFDialog(File(source)) {
                        toast(R.string.moving)
                        startCopyMove(files, destinationFolder, false, copyPhotoVideoOnly)