diff --git a/project/src/services/DatabaseService.ts b/project/src/services/DatabaseService.ts index fcaa1e8a..bc427781 100644 --- a/project/src/services/DatabaseService.ts +++ b/project/src/services/DatabaseService.ts @@ -116,7 +116,7 @@ export class DatabaseService public getLocation(locationId: string): ILocation { const locations = this.getLocations(); - const desiredLocation = locations[locationId]; + const desiredLocation = locations[locationId.toLowerCase()]; if (!desiredLocation) { throw new Error(this.localisationService.getText("database-no_location_found_with_id", locationId));