Skip to content

Commit

Permalink
Get real value of the flag, not flag existence
Browse files Browse the repository at this point in the history
  • Loading branch information
AbandonedCart committed Dec 12, 2024
1 parent 3dc2e50 commit a6b7a00
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ android {
compileSdk 35
minSdk 21
targetSdk 35
versionName "4.2.9"
versionName "4.3.0"
versionCode = versionName.replace(".","").toInteger() * 10

vectorDrawables {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ class NfcActivity : AppCompatActivity() {
val commandIntent = this.intent
val mode = commandIntent.action
isEliteIntent = commandIntent.hasExtra(NFCIntent.EXTRA_SIGNATURE)
skipLockInfo = commandIntent.hasExtra(NFCIntent.EXTRA_SKIP_LOCK_INFO)
skipLockInfo = commandIntent.getBooleanExtra(NFCIntent.EXTRA_SKIP_LOCK_INFO, false)
when {
commandIntent.hasExtra(NFCIntent.EXTRA_CURRENT_BANK) -> {
val position = bankPicker.getPositionByValue(bankPicker.value)
Expand Down

0 comments on commit a6b7a00

Please sign in to comment.