mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-31 12:51:35 +02:00
Merge pull request #61 from overleaf/spd-colon-passwords
GitBridge: Allow colons in passwords
This commit is contained in:
@@ -131,7 +131,7 @@ public class Oauth2Filter implements Filter {
|
||||
Base64.decodeBase64(st.nextToken()),
|
||||
"UTF-8"
|
||||
);
|
||||
String[] split = credentials.split(":");
|
||||
String[] split = credentials.split(":",2);
|
||||
if (split.length == 2) {
|
||||
String username = split[0];
|
||||
String password = split[1];
|
||||
|
||||
Reference in New Issue
Block a user