mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-10 10:39:30 +00:00
15 lines
407 B
Swift
15 lines
407 B
Swift
// Copyright © 2021 Metabolist. All rights reserved.
|
|
|
|
import Foundation
|
|
import Kingfisher
|
|
|
|
struct PrefetchRequestModifier: ImageDownloadRequestModifier {
|
|
func modified(for request: URLRequest) -> URLRequest? {
|
|
var mutableRequest = request
|
|
|
|
mutableRequest.allowsExpensiveNetworkAccess = false
|
|
mutableRequest.allowsConstrainedNetworkAccess = false
|
|
|
|
return request
|
|
}
|
|
}
|