mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-27 05:09:23 +01:00
Forgot to utf-8 encode the URL from a Google search
This commit is contained in:
parent
6cfde5bcc9
commit
f772fbf284
@ -128,7 +128,7 @@ class Google(callbacks.PluginRegexp):
|
||||
for result in data:
|
||||
title = utils.web.htmlToText(result['titleNoFormatting']\
|
||||
.encode('utf-8'))
|
||||
url = result['unescapedUrl']
|
||||
url = result['unescapedUrl'].encode('utf-8')
|
||||
if title:
|
||||
if bold:
|
||||
title = ircutils.bold(title)
|
||||
|
Loading…
Reference in New Issue
Block a user