From 759414e3138e02a540cbb74a9675d6dec6362004 Mon Sep 17 00:00:00 2001 From: Ognjen Cirkovic Date: Thu, 3 Nov 2022 21:39:34 +0100 Subject: Typo fix. --- Backend/Api/Api/Services/LocationService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Backend') diff --git a/Backend/Api/Api/Services/LocationService.cs b/Backend/Api/Api/Services/LocationService.cs index b44f983..629c2a7 100644 --- a/Backend/Api/Api/Services/LocationService.cs +++ b/Backend/Api/Api/Services/LocationService.cs @@ -12,7 +12,7 @@ namespace Api.Services public LocationService(IDatabaseConnection settings, IMongoClient mongoClient) { var database = mongoClient.GetDatabase(settings.DatabaseName); - _locations = database.GetCollection(settings.FileCollectionName); + _locations = database.GetCollection(settings.LocationCollectionName); } public async Task add(Location loc) { -- cgit v1.2.3