fix: fixed trailing slash for server address

This commit is contained in:
2025-02-06 11:10:01 +01:00
parent b0fb8e204c
commit 2a9c6cfd2d

View File

@ -9,7 +9,7 @@ export class ServerSettingsService {
getServerAddress() {
return (
this.appConfigService.getConfig().baseUrl ?? 'http://localhost/api/v1'
this.appConfigService.getConfig().baseUrl ?? 'http://localhost/api/v1/'
);
}