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 09980e0 commit d0385f8
Showing 1 changed file with 1 addition and 1 deletion.
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 d0385f8

Please sign in to comment.