Merge pull request #524 from trubitsyn/patch-1
Camel case fix: tryloadGallery -> tryLoadGallery
This commit is contained in:
commit
22abab9473
1 changed files with 3 additions and 3 deletions
|
@ -133,13 +133,13 @@ class MainActivity : SimpleActivity(), DirectoryAdapter.DirOperationsListener {
|
||||||
handleAppPasswordProtection {
|
handleAppPasswordProtection {
|
||||||
if (it) {
|
if (it) {
|
||||||
mIsPasswordProtectionPending = false
|
mIsPasswordProtectionPending = false
|
||||||
tryloadGallery()
|
tryLoadGallery()
|
||||||
} else {
|
} else {
|
||||||
finish()
|
finish()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
tryloadGallery()
|
tryLoadGallery()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -220,7 +220,7 @@ class MainActivity : SimpleActivity(), DirectoryAdapter.DirOperationsListener {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun tryloadGallery() {
|
private fun tryLoadGallery() {
|
||||||
handlePermission(PERMISSION_WRITE_STORAGE) {
|
handlePermission(PERMISSION_WRITE_STORAGE) {
|
||||||
if (it) {
|
if (it) {
|
||||||
if (config.showAll) {
|
if (config.showAll) {
|
||||||
|
|
Loading…
Reference in a new issue