Skip to content

Commit

Permalink
Fix incorrect check if CIS-2 tx notifications are on
Browse files Browse the repository at this point in the history
  • Loading branch information
Radiokot committed Nov 27, 2024
1 parent e1a96c5 commit 8946341
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@

- Crash on launch when Google Play Services is disabled
- Inconsistent transaction fee for invoke smart contract
- Crashing when first launching the app offline
- Crashing when first launching the app offline
- Not receiving CIS-2 transaction notifications when they are disabled for CCD transactions

### Changed

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class TransactionNotificationsManager(
get() = areNotificationsEnabled && notificationsPreferences.areCcdTxNotificationsEnabled

private val areCis2TxNotificationsEnabled: Boolean
get() = areNotificationsEnabled && notificationsPreferences.areCcdTxNotificationsEnabled
get() = areNotificationsEnabled && notificationsPreferences.areCis2TxNotificationsEnabled

@SuppressLint("MissingPermission")
fun notifyCcdTransaction(
Expand Down

0 comments on commit 8946341

Please sign in to comment.