mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-22 16:21:00 +00:00
16 lines
407 B
Swift
16 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
|
||
|
}
|
||
|
}
|