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

Commit bb49b860 authored by tibbi's avatar tibbi
Browse files

remove a file existance check before removing from playstore

parent a6cdacd6
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.13.2'
        propVersionName = '3.13.3'
        kotlin_version = '1.2.21'
        support_libs = '27.0.2'
    }
+1 −1
Original line number Diff line number Diff line
@@ -339,7 +339,7 @@ fun Context.rescanDeletedPath(path: String, callback: (() -> Unit)? = null) {
    if (deleteFromMediaStore(path)) {
        callback?.invoke()
    } else {
        if (getDoesFilePathExist(path) || getIsPathDirectory(path)) {
        if (getIsPathDirectory(path)) {
            callback?.invoke()
            return
        }