Skip to content

Commit

Permalink
Merge pull request #1008 from ably/small-improvements
Browse files Browse the repository at this point in the history
chore: update `CHANGELOG.md`
  • Loading branch information
ttypic authored May 14, 2024
2 parents d3bf7a4 + 627a83e commit ffc8647
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
5 changes: 1 addition & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,9 @@

[Full Changelog](https://github.com/ably/ably-java/compare/v1.2.37...v1.2.38)

**Breaking changes:**

- v1.2.34 is incompatible with older Android API versions [\#1004](https://github.com/ably/ably-java/issues/1004)

**Fixed bugs:**

- v1.2.34-v1.2.37 are incompatible with Android API versions < 24 [\#1004](https://github.com/ably/ably-java/issues/1004)
- REST client not attempting fallback hosts upon `httpOpenTimeout` expiry [\#997](https://github.com/ably/ably-java/issues/997)

**Closed issues:**
Expand Down
6 changes: 1 addition & 5 deletions lib/src/main/java/io/ably/lib/realtime/AblyRealtime.java
Original file line number Diff line number Diff line change
Expand Up @@ -266,11 +266,7 @@ public void transferToChannelQueue(List<ConnectionManager.QueuedMessage> queuedM
for (Channel channel : map.values()) {
if (channel.state.isReattachable()) {
Log.d(TAG, "reAttach(); channel = " + channel.name);
if (channelQueueMap.containsKey(channel.name)){
channel.transferQueuedPresenceMessages(channelQueueMap.get(channel.name));
} else {
channel.transferQueuedPresenceMessages(null);
}
channel.transferQueuedPresenceMessages(channelQueueMap.get(channel.name));
}
}
}
Expand Down

0 comments on commit ffc8647

Please sign in to comment.