SOLR-4265: Fix charset bug... :(

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1429958 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Uwe Schindler 2013-01-07 18:55:36 +00:00
parent 2a1e68e504
commit 630409a316
1 changed files with 1 additions and 1 deletions

View File

@ -217,7 +217,7 @@ public class SolrRequestParsers
String value = URLDecoder.decode( kv.substring( idx+1 ), charset);
MultiMapSolrParams.addParam( name, value, map );
} else {
String name = URLDecoder.decode( kv, "UTF-8" );
String name = URLDecoder.decode( kv, charset );
MultiMapSolrParams.addParam( name, "", map );
}
}