Skip to content

Commit

Permalink
Fix a bug that prevented session reset in some cases (#517)
Browse files Browse the repository at this point in the history
  • Loading branch information
sei-bstein authored Oct 28, 2024
1 parent 50aa665 commit 2011ff3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,7 @@ private async Task ArchiveChallenges(IEnumerable<Data.Challenge> challenges)
}
catch (Exception ex)
{
Logger.LogWarning($"Exception thrown during attempted cleanup of gamespace (type: {ex.GetType().Name}, message: {ex.Message})", ex);
Logger.LogWarning($"Exception thrown during attempted cleanup of gamespace (type: {ex.GetType().Name}, message: {ex.Message})");
}
var mappedChallenge = _mapper.Map<ArchivedChallenge>(challenge);
Expand Down

0 comments on commit 2011ff3

Please sign in to comment.