fix #2565 multibyte character support
This commit is contained in:
parent
765c97644d
commit
c4521d91f6
2 changed files with 2 additions and 2 deletions
2
pom.xml
2
pom.xml
|
@ -54,7 +54,7 @@
|
|||
<okhttp.version>3.14.9</okhttp.version>
|
||||
|
||||
<!-- Crawler -->
|
||||
<crawler.version>3.11.1</crawler.version>
|
||||
<crawler.version>3.11.2-SNAPSHOT</crawler.version>
|
||||
|
||||
<!-- Suggest -->
|
||||
<suggest.version>7.11.0</suggest.version>
|
||||
|
|
|
@ -259,7 +259,7 @@ public class AdminStorageAction extends FessAdminAction {
|
|||
if (values.length == 0) {
|
||||
return StringUtil.EMPTY;
|
||||
}
|
||||
return values[values.length - 1];
|
||||
return urlDecode(values[values.length - 1]);
|
||||
}
|
||||
|
||||
public static String decodePath(final String id) {
|
||||
|
|
Loading…
Add table
Reference in a new issue