From 2b206e098a5a342bbbfd45b83803ba3718a37d8f Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Tue, 27 Aug 2019 13:29:34 -0500 Subject: [PATCH] Move the location of the home page to feed icon cache to the cache directory instead of the temp directory --- Mac/AppDelegate.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mac/AppDelegate.swift b/Mac/AppDelegate.swift index 00933d244..6340005b2 100644 --- a/Mac/AppDelegate.swift +++ b/Mac/AppDelegate.swift @@ -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()