Fix low bandwidth to not be on by default

This commit is contained in:
Kiooeht 2011-09-15 11:21:34 -07:00
parent 3570a32912
commit 28f89f9791

View file

@ -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??