Linux Path Joining Fix

This commit is contained in:
Josef 2025-11-10 20:24:53 +01:00
parent b3fc54ded2
commit 8e602c533f
1 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,5 @@
import { RegExpUtility } from "../../browser/text/RegExpUtitlity";
import { Files } from "../files/Files";
export class UserManagementServerSettings
{
@ -38,7 +39,7 @@ export class UserManagementServerSettings
return path;
}
return RegExpUtility.joinPaths( [ rootPath, path ] );
return Files.joinPaths( [ rootPath, path ] );
}
}