diff --git a/src/components/structures/LoggedInView.js b/src/components/structures/LoggedInView.js
index 8cd2bf8a71..e7c1e00008 100644
--- a/src/components/structures/LoggedInView.js
+++ b/src/components/structures/LoggedInView.js
@@ -253,6 +253,7 @@ export default React.createClass({
break;
}
+ const isGuest = this.props.matrixClient.isGuest();
var topBar;
if (this.props.hasNewVersion) {
topBar = ;
} else if (this.state.userHasGeneratedPassword) {
topBar = ;
- } else if (Notifier.supportsDesktopNotifications() && !Notifier.isEnabled() && !Notifier.isToolbarHidden()) {
+ } else if (!isGuest && Notifier.supportsDesktopNotifications() && !Notifier.isEnabled() && !Notifier.isToolbarHidden()) {
topBar = ;
}