Skip to content

Commit

Permalink
fix: Missing args in team localization
Browse files Browse the repository at this point in the history
  • Loading branch information
hez2010 authored and GZTimeWalker committed Apr 12, 2024
1 parent 18567d6 commit 9913f3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/GZCTF/Controllers/TeamController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,7 @@ public async Task<IActionResult> DeleteTeam(int id, CancellationToken token)

await teamRepository.DeleteTeam(team, token);

logger.Log(Program.StaticLocalizer[nameof(Resources.Program.Team_Deleted)], user, TaskStatus.Success);
logger.Log(Program.StaticLocalizer[nameof(Resources.Program.Team_Deleted), team.Name], user, TaskStatus.Success);

return Ok();
}
Expand Down

0 comments on commit 9913f3b

Please sign in to comment.