From f1ad8195473c07cad36a5885d954777dc89e8706 Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Mon, 28 Aug 2017 16:11:38 -0700 Subject: [PATCH] home: Remove compatibility code for old name Humbug. Since Zulip stopped being called Humbug in like 2013, this code hasn't been useful in years, and is a bit confusing. --- zerver/views/home.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zerver/views/home.py b/zerver/views/home.py index c180a00ddb..a40c661df2 100644 --- a/zerver/views/home.py +++ b/zerver/views/home.py @@ -262,5 +262,5 @@ def is_buggy_ua(agent): This may get fixed in the future, but for right now we can just serve the more conservative CSS to all our desktop apps. """ - return ("Humbug Desktop/" in agent or "Zulip Desktop/" in agent or "ZulipDesktop/" in agent) and \ + return ("Zulip Desktop/" in agent or "ZulipDesktop/" in agent) and \ "Mac" not in agent