LANCommander/LANCommander.Server/Jobs/Background/RepackArchiveBackgroundJob.cs
Pat Hartl 24eaa79885 Add tool to repack non-streamable ZIP archives
Adds a tool that checks archives to see if they use data descriptors instead of local entry headers for tracking entry size. It will also repack these archives if required.
2026-06-22 19:18:11 -05:00

19 lines
476 B
C#

using LANCommander.Server.Services;
namespace LANCommander.Server.Jobs.Background
{
public class RepackArchiveBackgroundJob
{
private readonly ArchiveService _archiveService;
public RepackArchiveBackgroundJob(ArchiveService archiveService)
{
_archiveService = archiveService;
}
public async Task Execute(Guid archiveId)
{
await _archiveService.RepackArchiveAsync(archiveId);
}
}
}