commit
9469ffd6be
|
@ -53,12 +53,12 @@ extension LocalAccountRefresher: DownloadSessionDelegate {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
let request = NSMutableURLRequest(url: url)
|
var request = URLRequest(url: url)
|
||||||
if let conditionalGetInfo = feed.conditionalGetInfo {
|
if let conditionalGetInfo = feed.conditionalGetInfo {
|
||||||
conditionalGetInfo.addRequestHeadersToURLRequest(request)
|
conditionalGetInfo.addRequestHeadersToURLRequest(&request)
|
||||||
}
|
}
|
||||||
|
|
||||||
return request as URLRequest
|
return request
|
||||||
}
|
}
|
||||||
|
|
||||||
func downloadSession(_ downloadSession: DownloadSession, downloadDidCompleteForRepresentedObject representedObject: AnyObject, response: URLResponse?, data: Data, error: NSError?, completion: @escaping () -> Void) {
|
func downloadSession(_ downloadSession: DownloadSession, downloadDidCompleteForRepresentedObject representedObject: AnyObject, response: URLResponse?, data: Data, error: NSError?, completion: @escaping () -> Void) {
|
||||||
|
|
|
@ -50,7 +50,7 @@ final class SendToMicroBlogCommand: SendToCommand {
|
||||||
let s = article.attributionString + article.linkString
|
let s = article.attributionString + article.linkString
|
||||||
|
|
||||||
let urlQueryDictionary = ["text": s]
|
let urlQueryDictionary = ["text": s]
|
||||||
guard let urlQueryString = urlQueryDictionary.urlQueryString() else {
|
guard let urlQueryString = urlQueryDictionary.urlQueryString else {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
guard let url = URL(string: "microblog://post?" + urlQueryString) else {
|
guard let url = URL(string: "microblog://post?" + urlQueryString) else {
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit e513062972cd8097179ed39999f327ad29c8a4e1
|
Subproject commit 5c9d9c575c8bad32cf12ee81243e6a7d28021667
|
Loading…
Reference in New Issue