Skip to content

Commit

Permalink
README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jguz-pubnub committed Dec 18, 2024
1 parent a7b1b2e commit d7df069
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ You will need the publish and subscribe keys to authenticate your app. Get your
1. Create or open your project inside Xcode.
2. Navigate to **File -> Add Package Dependencies**.
3. Search for `https://github.com/pubnub/swift-chat-sdk`
4. From the **Dependency Rule** drop-down list, select **Exact**. In the version input field, type `0.9.2-dev`
4. From the **Dependency Rule** drop-down list, select **Exact**. In the version input field, type `0.9.3-dev`
5. Click the **Add Package** button.

For more information see Apple's guide on [Adding Package Dependencies to Your App](https://developer.apple.com/documentation/xcode/adding_package_dependencies_to_your_app)
Expand Down
2 changes: 1 addition & 1 deletion Sources/Entities/ChannelImpl.swift
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ extension ChannelImpl: Channel {
usePost: Bool = false,
ttl: Int? = nil,
quotedMessage: MessageImpl? = nil,
files: [InputFile]?,
files: [InputFile]? = nil,
usersToMention: [String]? = nil,
completion: ((Swift.Result<Timetoken, Error>) -> Void)? = nil
) {
Expand Down
3 changes: 2 additions & 1 deletion Tests/ChannelIntegrationTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -237,11 +237,12 @@ class ChannelIntegrationTests: PubNubSwiftChatSDKIntegrationTests {
text: "Some text to send",
meta: ["a": 123, "b": "someString"],
shouldStore: true,
usersToMention: nil,
completion: $0
)
}

let retrievedMessage = try awaitResultValue {
let retrievedMessage = try awaitResultValue(delay: 2) {
channel.getMessage(
timetoken: tt,
completion: $0
Expand Down

0 comments on commit d7df069

Please sign in to comment.