Skip to content

Commit 59de341

Browse files
committed
Fixed compilation issue
1 parent 3fd794a commit 59de341

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Upcoming
44

5-
## 3.12.1 - Released 18 Jul 2025
5+
## 3.13.0 - Released 24 Jul 2025
66

77
- [Chat] The welcome message is now always the first message of the current day.
88
- [Source] Cleaned up MessagesManager for consistency and converted to Kotlin.

PUBLISHING.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,16 @@ In order to publish, several checks should be done.
44

55
## Package
66

7+
- [ ] Ensure all the tests run successfully.
78
- [ ] Ensure `build.gradle` has the correct version.
89
- [ ] Ensure `CHANGELOG.md` is updated.
910
- [ ] Ensure `README.md` is updated.
11+
- [ ] Ensure there is a valid SSL pinning certificate for the upcoming months inside the release.
1012

1113
## Example
1214

1315
- [ ] Ensure `app/build.gradle` uses the local library reference to Parley.
16+
- [ ] Ensure there is a valid SSL pinning certificate for the upcoming months inside the example project.
1417

1518
## Publish
1619

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ task clean(type: Delete) {
2727
}
2828

2929
ext {
30-
parley_version_name = "3.12.1"
30+
parley_version_name = "3.13.0"
3131
}

parley/src/main/java/nu/parley/android/data/messages/MessagesManager.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ internal class MessagesManager {
239239
dataSource = null
240240
}
241241

242-
fun updateRead(messageIds: MutableSet<Int?>) {
242+
fun updateRead(messageIds: Set<Int>) {
243243
for (message in originalMessages) {
244244
if (messageIds.contains(message.id)) {
245245
message.status = MessageStatus.Read

0 commit comments

Comments
 (0)