mirror of https://github.com/apache/lucene.git
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:
parent
2a1e68e504
commit
630409a316
|
@ -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 );
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue