Changing UserDataServiceClientBase Http to Signalr in progress...

This commit is contained in:
Loretta 2024-08-29 16:40:46 +02:00
parent 3f15ef9b4c
commit 07ea4678e1
1 changed files with 3 additions and 1 deletions

View File

@ -160,7 +160,9 @@ namespace AyCode.Blazor.Components.Services
Logger.Error(errorText); Logger.Error(errorText);
//TODO: Ideiglenes, majd a ResponseMessage-et kell visszaadni a Status miatt! - J. //TODO: Ideiglenes, majd a ResponseMessage-et kell visszaadni a Status miatt! - J.
throw new Exception(errorText); return await Task.FromException<TResponse>(new Exception(errorText));
//throw new Exception(errorText);
//return default; //return default;
} }