[Bug](streamload) fix inconsistent load result of be and fe (#20950)

This commit is contained in:
HHoflittlefish777
2023-06-21 18:12:51 +08:00
committed by GitHub
parent 84b97860a1
commit 2beed11256
3 changed files with 56 additions and 1 deletions

View File

@ -244,7 +244,7 @@ public class BaseController {
if (Strings.isNullOrEmpty(encodedAuthString)) {
return false;
}
String[] parts = encodedAuthString.split(" ");
String[] parts = encodedAuthString.split("\\s+");
if (parts.length != 2) {
return false;
}