Merge pull request #1591 from Wevah/ios-candidate

Update to newest RSCore
This commit is contained in:
Brent Simmons
2020-01-09 16:24:27 -08:00
committed by GitHub
2 changed files with 3 additions and 3 deletions

View File

@@ -103,7 +103,7 @@ private extension SingleFaviconDownloader {
queue.async {
if let data = self.diskCache[self.diskKey], !data.isEmpty {
RSImage.rs_image(with: data, imageResultBlock: completion)
RSImage.image(with: data, imageResultBlock: completion)
return
}
@@ -138,7 +138,7 @@ private extension SingleFaviconDownloader {
if let data = data, !data.isEmpty, let response = response, response.statusIsOK, error == nil {
self.saveToDisk(data)
RSImage.rs_image(with: data, imageResultBlock: completion)
RSImage.image(with: data, imageResultBlock: completion)
return
}