Skip to content

Commit

Permalink
fix multi-word searches
Browse files Browse the repository at this point in the history
  • Loading branch information
lloyd committed Jan 13, 2012
1 parent e044bbd commit 877aac4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/wsapi.js
Expand Up @@ -82,7 +82,7 @@ exports.search = function(args, req, res) {
db.getUtterances({
host: args[1],
room: args[2],
phrase: args[3],
phrase: decodeURIComponent(args[3]),
before: before,
num: num
}, function(err, rez) {
Expand Down

0 comments on commit 877aac4

Please sign in to comment.