Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Merge] Release -> Develop #432

Merged
merged 11 commits into from
Nov 9, 2024
Prev Previous commit
Next Next commit
[Hotfix] #430 - ImageResource에 KF 명시
dlwogus0128 committed Nov 7, 2024
commit 7b07ed2898c1639a3f97f0361e05ba9866a7fdc0
2 changes: 1 addition & 1 deletion SOPT-iOS/Projects/Core/Sources/Utils/setImage.swift
Original file line number Diff line number Diff line change
@@ -39,7 +39,7 @@ public extension UIImageView {

private func setNewImage(with urlString: String, placeholder: UIImage? = nil, completion: ((UIImage?) -> Void)? = nil) {
guard let url = URL(string: urlString) else { return }
let resource = ImageResource(downloadURL: url, cacheKey: urlString)
let resource = KF.ImageResource(downloadURL: url, cacheKey: urlString)

self.kf.setImage(
with: resource,