contentURL was missing the trailing slash causing it to fail for all contentURL calls with the dropbox api (#26)
This commit is contained in:
committed by
Amir Abbas Mousavian
parent
4f6e3c7bd5
commit
d7ae709cf7
@@ -58,7 +58,7 @@ open class DropboxFileProvider: FileProviderBasicRemote {
|
||||
self.credential = credential
|
||||
|
||||
self.apiURL = URL(string: "https://api.dropboxapi.com/2/")!
|
||||
self.contentURL = URL(string: "https://content.dropboxapi.com/2")!
|
||||
self.contentURL = URL(string: "https://content.dropboxapi.com/2/")!
|
||||
|
||||
dispatch_queue = DispatchQueue(label: "FileProvider.\(DropboxFileProvider.type)", attributes: DispatchQueue.Attributes.concurrent)
|
||||
operation_queue = OperationQueue()
|
||||
|
||||
Reference in New Issue
Block a user