We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Xcode: 7.0 AlamofireImage: 1.1.0
Current around line 324 of UIImageView+AlamofireImage.swift there is this block of code:
324
UIImageView+AlamofireImage.swift
guard let currentRequest = strongSelf.af_activeRequest?.task.currentRequest where currentRequest.URLString == request?.URLString else { return }
Trying to figure out why facebook profile photos don't load such as https://graph.facebook.com/v2.4/529271840955/picture?type=large turns out this check returns because of a 3XX that then results in a different URL.
Would it be worth generated a UUID rather than using the image url or some way of keeping track of the redirects?
The text was updated successfully, but these errors were encountered:
Looking further I think all that needs to happen here is task.currentRequest should really be task.originalRequest
task.currentRequest
task.originalRequest
Sorry, something went wrong.
cnoon
Successfully merging a pull request may close this issue.
Xcode: 7.0
AlamofireImage: 1.1.0
Current around line
324
ofUIImageView+AlamofireImage.swift
there is this block of code:Trying to figure out why facebook profile photos don't load such as https://graph.facebook.com/v2.4/529271840955/picture?type=large turns out this check returns because of a 3XX that then results in a different URL.
Would it be worth generated a UUID rather than using the image url or some way of keeping track of the redirects?
The text was updated successfully, but these errors were encountered: