Move the location of the home page to feed icon cache to the cache directory instead of the temp directory

This commit is contained in:
Maurice Parker 2019-08-27 13:29:34 -05:00
parent c80d0cbbce
commit 2b206e098a
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@ class AppDelegate: NSObject, NSApplicationDelegate, NSUserInterfaceValidations,
imageDownloader = ImageDownloader(folder: imagesFolder)
authorAvatarDownloader = AuthorAvatarDownloader(imageDownloader: imageDownloader)
feedIconDownloader = FeedIconDownloader(imageDownloader: imageDownloader, folder: tempDirectory)
feedIconDownloader = FeedIconDownloader(imageDownloader: imageDownloader, folder: cacheFolder)
updateSortMenuItems()
createAndShowMainWindow()