Skip to content

Commit

Permalink
fix: update SendOptions initializer parameter name
Browse files Browse the repository at this point in the history
  • Loading branch information
kele-leanes authored and zombieobject committed Feb 20, 2024
1 parent bbd2d6b commit df379c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/XMTPiOS/SendOptions.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ public struct SendOptions {
public var ephemeral: Bool = false
public var shouldPush: Bool?

public init(compression: EncodedContentCompression? = nil, contentType: ContentTypeID? = nil, ephemeral: Bool = false, shouldPush: Bool? = nil) {
public init(compression: EncodedContentCompression? = nil, contentType: ContentTypeID? = nil, ephemeral: Bool = false, __shouldPush: Bool? = nil) {
self.compression = compression
self.contentType = contentType
self.ephemeral = ephemeral
self.shouldPush = shouldPush
self.shouldPush = __shouldPush
}
}

0 comments on commit df379c3

Please sign in to comment.