From a5063cf046eeb9f6b0f0207e81bb65a918013a60 Mon Sep 17 00:00:00 2001 From: Leo Franchi Date: Thu, 5 Feb 2015 15:30:08 -0800 Subject: [PATCH] Dropbox domain is zulip.com (imported from commit 73e9196783eaba7c62f5668e373bb1b5d372663e) --- zerver/lib/create_user.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zerver/lib/create_user.py b/zerver/lib/create_user.py index 9b6a68d943..127a3d17b7 100644 --- a/zerver/lib/create_user.py +++ b/zerver/lib/create_user.py @@ -25,7 +25,7 @@ def create_user_profile(realm, email, password, active, bot, full_name, now = timezone.now() email = UserManager.normalize_email(email) - enable_stream_desktop_notifications = (realm.domain != 'dropbox.com') + enable_stream_desktop_notifications = (realm.domain != 'zulip.com') user_profile = UserProfile(email=email, is_staff=False, is_active=active, full_name=full_name, short_name=short_name,