Skip to content
Snippets Groups Projects
Commit bdbfd48c authored by Dariusz Rybicki's avatar Dariusz Rybicki
Browse files

Fix FileTransferSend.Params.period type

parent 0440098d
No related branches found
No related tags found
2 merge requests!102Release 1.0.0,!88Update Bindings
This commit is part of merge request !88. Comments created here will be created in the context of that merge request.
...@@ -7,7 +7,7 @@ public struct FileTransferSend { ...@@ -7,7 +7,7 @@ public struct FileTransferSend {
payload: FileSend, payload: FileSend,
recipientId: Data, recipientId: Data,
retry: Float, retry: Float,
period: String period: Int
) { ) {
self.payload = payload self.payload = payload
self.recipientId = recipientId self.recipientId = recipientId
...@@ -18,7 +18,7 @@ public struct FileTransferSend { ...@@ -18,7 +18,7 @@ public struct FileTransferSend {
public var payload: FileSend public var payload: FileSend
public var recipientId: Data public var recipientId: Data
public var retry: Float public var retry: Float
public var period: String public var period: Int
} }
public var run: (Params, FileTransferProgressCallback) throws -> Data public var run: (Params, FileTransferProgressCallback) throws -> Data
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment