Skip to content

Commit

Permalink
Made loadBlockedUsers in ConnectedUser public (#3352)
Browse files Browse the repository at this point in the history
  • Loading branch information
martinmitrevski authored Aug 1, 2024
1 parent edbc5bd commit c4f28cd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

# Upcoming

## StreamChat
### 🔄 Changed
- Made loadBlockedUsers in ConnectedUser public [#3352](https://github.com/GetStream/stream-chat-swift/pull/3352)

# [4.61.0](https://github.com/GetStream/stream-chat-swift/releases/tag/4.61.0)
_July 30, 2024_
Expand Down
2 changes: 1 addition & 1 deletion Sources/StreamChat/StateLayer/ConnectedUser.swift
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ public final class ConnectedUser {
///
/// - Parameter completion: Called when the API call is finished. Called with `Error` if the remote update fails.
///
func loadBlockedUsers() async throws -> [BlockedUserDetails] {
public func loadBlockedUsers() async throws -> [BlockedUserDetails] {
try await currentUserUpdater.loadBlockedUsers()
}

Expand Down

0 comments on commit c4f28cd

Please sign in to comment.