Skip to content

Commit 0d0ed44

Browse files
committed
Merge pull request #21 from j0k3r-92/master
fix decoding issue
2 parents ac6c7b7 + 97a18fe commit 0d0ed44

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

unbxdSearch.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -561,7 +561,7 @@ var unbxdSearchInit = function(jQuery, Handlebars){
561561
,decodedParamscount = Object.keys(decodedParams).length
562562
,finalParams = null;
563563

564-
if(decodedParamscount > 0){
564+
if(!this.options.noEncoding && decodedParamscount > 0){
565565
finalParams = this._processURL(decodedParams);
566566
}else{
567567
finalParams = this._processURL(urlqueryparams);

0 commit comments

Comments
 (0)