From 52dc491ba54cf771b6bcfe3b9be708560f757e3a Mon Sep 17 00:00:00 2001 From: Max Mannstein Date: Sat, 9 Aug 2025 11:01:08 +0200 Subject: [PATCH] Update API endpoint for setting app user type --- gehGassiApp/gehGassiApp.Core/Services/CommunicationService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gehGassiApp/gehGassiApp.Core/Services/CommunicationService.cs b/gehGassiApp/gehGassiApp.Core/Services/CommunicationService.cs index c7cc88d..10a6616 100644 --- a/gehGassiApp/gehGassiApp.Core/Services/CommunicationService.cs +++ b/gehGassiApp/gehGassiApp.Core/Services/CommunicationService.cs @@ -1540,7 +1540,7 @@ namespace gehGassiApp.Core.Services var stringContent = new StringContent(json, Encoding.UTF8, "application/json"); - var serverResult = await _httpClient.PostAsync($"api/Account/SetAppUserTypeEx", stringContent, token).ConfigureAwait(false); + var serverResult = await _httpClient.PostAsync($"api/Account/SetAppUserTypeNoMango", stringContent, token).ConfigureAwait(false); if (serverResult.IsSuccessStatusCode) {