Skip to content

Commit

Permalink
Merge pull request #64 from ParkSangGwon/feature/ignore-permission-de…
Browse files Browse the repository at this point in the history
…nied-log

Ignore permission denied log
  • Loading branch information
ted-prnd authored Mar 5, 2021
2 parents 623ea4c + 43f0651 commit 4b6865f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ android.enableJetifier=true
# Kotlin code style for this project: "official" or "obsolete":
kotlin.code.style=official
GROUP=gun0912.ted
VERSION_NAME=1.1.9
VERSION_NAME=1.1.10
DEVELOPER_ID='gun0912'
DEVELOPER_NAME='Ted Park'
SITE_URL='https://github.com/ParkSangGwon/TedImagePicker'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,6 @@ open class TedImagePickerBaseBuilder<out B : TedImagePickerBaseBuilder<B>>(
.subscribe({ permissionResult ->
if (permissionResult.isGranted) {
startActivity(context)
} else {
onErrorListener?.onError(IllegalAccessException("Permission denied"))
}
}, { throwable -> onErrorListener?.onError(throwable) })
}
Expand Down

0 comments on commit 4b6865f

Please sign in to comment.