From 823d83c942bea3060f839212d28248d904d62305 Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Sat, 15 Sep 2018 12:08:57 -0700 Subject: [PATCH] =?UTF-8?q?Write=20to=20disk=20on=20display-name-change=20?= =?UTF-8?q?only=20if=20it=E2=80=99s=20a=20Folder,=20since=20Feed=20names?= =?UTF-8?q?=20are=20stored=20in=20ODB.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Frameworks/Account/Account.swift | 3 --- 1 file changed, 3 deletions(-) diff --git a/Frameworks/Account/Account.swift b/Frameworks/Account/Account.swift index 7500eecae..8b8c7f277 100644 --- a/Frameworks/Account/Account.swift +++ b/Frameworks/Account/Account.swift @@ -506,9 +506,6 @@ public final class Account: DisplayNameProvider, UnreadCountProvider, Container, @objc func displayNameDidChange(_ note: Notification) { - if let feed = note.object as? Feed, feed.account === self { - dirty = true - } if let folder = note.object as? Folder, folder.account === self { dirty = true }