Fix context error

This commit is contained in:
2025-11-03 12:49:01 +09:00
parent 96d3a5530b
commit ae4d30d27b
2 changed files with 6 additions and 1 deletions

View File

@ -104,7 +104,7 @@ namespace Hcs.WebApp.BackgroundServices.CampaignManagers
campaign.Step = (int)Step.End;
await HeadquartersService.UpdateCampaignStepAsync(context, campaign);
await HeadquartersService.SetCampaignEndedAsync(campaign.Id);
await HeadquartersService.SetCampaignEndedAsync(context, campaign.Id);
await transaction.CommitAsync();
}