diff --git a/Evergreen/Base.lproj/MainWindow.storyboard b/Evergreen/Base.lproj/MainWindow.storyboard
index 2123d5f56..781995ee4 100644
--- a/Evergreen/Base.lproj/MainWindow.storyboard
+++ b/Evergreen/Base.lproj/MainWindow.storyboard
@@ -389,7 +389,7 @@
-
+
@@ -428,7 +428,7 @@
-
+
diff --git a/Evergreen/MainWindow/MainWindowController.swift b/Evergreen/MainWindow/MainWindowController.swift
index dbb4c4759..9645ba331 100644
--- a/Evergreen/MainWindow/MainWindowController.swift
+++ b/Evergreen/MainWindow/MainWindowController.swift
@@ -251,10 +251,10 @@ private extension MainWindowController {
func updateWindowTitle() {
if unreadCount < 1 {
- window?.title = appDelegate.appName
+ window?.title = appDelegate.appName!
}
else if unreadCount > 0 {
- window?.title = "\(appDelegate.appName) (\(unreadCount))"
+ window?.title = "\(appDelegate.appName!) (\(unreadCount))"
}
}
}