Skip to content

Commit

Permalink
Merge branch 'develop' into release/1.9.11
Browse files Browse the repository at this point in the history
  • Loading branch information
wax911 committed Oct 10, 2022
2 parents 53c2d95 + 1df8132 commit d7900f0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions app/src/main/assets/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ Read the **FAQ** for issues regarding NSFW and notifications. Goto **Options** -
### Enhancements
- Improve notification experience @Luk1337



### Bug Fixes
- Notification delivery on Android 12+. Thanks @Luk1337

Expand Down
4 changes: 2 additions & 2 deletions app/src/main/java/com/mxt/anitrend/util/NotificationUtil.kt
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class NotificationUtil(
context,
defaultNotificationId,
targetActivity,
PendingIntent.FLAG_UPDATE_CURRENT
PendingIntent.FLAG_UPDATE_CURRENT or PendingIntent.FLAG_IMMUTABLE
)
}

Expand All @@ -57,7 +57,7 @@ class NotificationUtil(
context,
action.hashCode(),
intent,
PendingIntent.FLAG_UPDATE_CURRENT
PendingIntent.FLAG_UPDATE_CURRENT or PendingIntent.FLAG_IMMUTABLE
)
}

Expand Down

0 comments on commit d7900f0

Please sign in to comment.