Skip to content

Commit

Permalink
Fix missing forced reload and improper update of current league statu…
Browse files Browse the repository at this point in the history
…s while applying template
  • Loading branch information
SSchulze1989 committed Aug 13, 2023
1 parent 936426b commit 2891c2d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ public async Task<StatusResult> AddChampionship(PutChampSeasonModel champSeason,
{
return putChampSeasonResult.ToStatusResult();
}
return StatusResult.SuccessResult();
return await LoadFromCurrentSeasonAsync(cancellationToken);
}
finally
{
Expand Down
4 changes: 2 additions & 2 deletions src/iRLeagueManager.Web/appsettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
}
},
"AllowedHosts": "*",
"APIServer": "http://localhost:5000",
//"APIServer": "https://irleaguemanager.net/api/",
//"APIServer": "http://localhost:5000",
"APIServer": "https://irleaguemanager.net/api/",
"DefaultUser": "testuser",
"DefaultPassword": "TestPass123!"
}

0 comments on commit 2891c2d

Please sign in to comment.