mirror of
https://github.com/beetbox/beets.git
synced 2026-01-09 17:33:51 +01:00
Fix search term encoding.
This commit is contained in:
parent
9597a900e7
commit
acd0a902bb
1 changed files with 1 additions and 1 deletions
|
|
@ -229,7 +229,7 @@ var AppView = Backbone.View.extend({
|
|||
},
|
||||
querySubmit: function(ev) {
|
||||
ev.preventDefault();
|
||||
router.navigate('item/query/' + escape($('#query').val()), true);
|
||||
router.navigate('item/query/' + encodeURIComponent($('#query').val()), true);
|
||||
},
|
||||
initialize: function() {
|
||||
this.playingItem = null;
|
||||
|
|
|
|||
Loading…
Reference in a new issue