From 28f89f9791233a2349c0d0a04e145e5e0f8efddd Mon Sep 17 00:00:00 2001 From: Kiooeht Date: Thu, 15 Sep 2011 11:21:34 -0700 Subject: [PATCH] Fix low bandwidth to not be on by default --- profile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profile.py b/profile.py index 8fc7452..0500bd2 100644 --- a/profile.py +++ b/profile.py @@ -199,7 +199,7 @@ class userConfig(object): def notifyOptions(self): return self.config.get('notifyOptions', self.SIGNIN | self.NEWMSG | self.NEWCONVO | self.INITIALS) def lowBandwidth(self): - return self.config.get('lowBandwidth', True) + return self.config.get('lowBandwidth', False) def addChum(self, chum): if chum.handle not in self.chums(): fp = open(self.filename) # what if we have two clients open??