[Bug](streamload) fix inconsistent load result of be and fe (#20950)
This commit is contained in:
committed by
GitHub
parent
84b97860a1
commit
2beed11256
@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user