Google: Fix @calc.

This commit is contained in:
Valentin Lorentz 2013-05-30 13:13:19 +02:00
parent 2bf0364c0e
commit 6e8b7be0f1

View File

@ -294,7 +294,7 @@ class Google(callbacks.PluginRegexp):
(self.registryValue('baseUrl', channel), s)
return url
def _googleUrlIG(self, s):
def _googleUrlIG(self, s, channel):
s = s.replace('+', '%2B')
s = s.replace(' ', '+')
url = r'http://%s/ig/calculator?hl=en&q=%s' % \
@ -312,7 +312,10 @@ class Google(callbacks.PluginRegexp):
Uses Google's calculator to calculate the value of <expression>.
"""
urlig = self._googleUrlIG(expr)
channel = msg.args[0]
if not isChannel(channel):
channel = None
urlig = self._googleUrlIG(expr, channel)
js = utils.web.getUrl(urlig).decode('utf8')
# Convert JavaScript to JSON. Ouch.
js = js \