fixed endpoint addresses

This commit is contained in:
2024-04-03 12:58:49 +02:00
parent a32958eb1f
commit c4412d5de6
3 changed files with 6 additions and 6 deletions

View File

@@ -322,7 +322,7 @@ namespace WD7UVN_SzTGUI_2023242.Client.WPF
private async Task Init()
{
items = await rest.GetAsync<T>(typeof(T).Name);
items = await rest.GetAsync<T>("api/" + typeof(T).Name);
CollectionChanged?.Invoke(this, new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Reset));
}