[MM-54465] Remove lowercase call when checking path names (#2831)
This commit is contained in:
@@ -201,7 +201,7 @@ export function validateV0ConfigData(data: ConfigV0) {
|
||||
function cleanURL(url: string): string {
|
||||
let updatedURL = url;
|
||||
if (updatedURL.includes('\\')) {
|
||||
updatedURL = updatedURL.toLowerCase().replace(/\\/gi, '/');
|
||||
updatedURL = updatedURL.replace(/\\/gi, '/');
|
||||
}
|
||||
return updatedURL;
|
||||
}
|
||||
|
Reference in New Issue
Block a user