[fix] [minor] show live chat link if commercial_support = 1 in conf.py
diff --git a/startup/boot.py b/startup/boot.py
index ce446e9..48bdeec 100644
--- a/startup/boot.py
+++ b/startup/boot.py
@@ -33,8 +33,9 @@
 		
 		# load subscription info
 		import conf
-		for key in ['max_users', 'expires_on', 'max_space', 'status', 'developer_mode']:
-			if hasattr(conf, key): bootinfo[key] = getattr(conf, key)
+		for key in ['max_users', 'expires_on', 'max_space', 'status', 'developer_mode',
+			'commercial_support']:
+				if hasattr(conf, key): bootinfo[key] = getattr(conf, key)
 
 		bootinfo['docs'] += webnotes.conn.sql("""select name, default_currency, cost_center
             from `tabCompany`""", as_dict=1, update={"doctype":":Company"})