From b065693f75bcdac1330119e637c18856eb588c44 Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Thu, 13 Sep 2018 22:55:06 -0700 Subject: [PATCH] Stop storing account.unreadCount in Settings.odb. --- Frameworks/Account/Account.swift | 1 - 1 file changed, 1 deletion(-) diff --git a/Frameworks/Account/Account.swift b/Frameworks/Account/Account.swift index 7aa3f7c4c..c8c826ef4 100644 --- a/Frameworks/Account/Account.swift +++ b/Frameworks/Account/Account.swift @@ -78,7 +78,6 @@ public final class Account: DisplayNameProvider, UnreadCountProvider, Container, didSet { if unreadCount != oldValue { postUnreadCountDidChangeNotification() - settingsTable.set(unreadCount, name: SettingsKey.unreadCount) } } }