Skip to content

Commit

Permalink
Fix Raid7 writing
Browse files Browse the repository at this point in the history
  • Loading branch information
Manu098vm committed Mar 12, 2024
1 parent 1b6e4c6 commit 8f27378
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TeraFinder.Plugins/Forms/ProgressForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ private async void btnApplyRaid7_Click(object sender, EventArgs e)
{
try
{
await Connection.Executor.WriteBlock(SAV.RaidSevenStar.Captured.Data, Blocks.KSevenStarRaidsCapture, CancellationToken.None).ConfigureAwait(false);
await Connection.Executor.WriteBlock(SAV.RaidSevenStar.Captured.Data.ToArray(), Blocks.KSevenStarRaidsCapture, CancellationToken.None).ConfigureAwait(false);
}
catch
{
Expand Down

0 comments on commit 8f27378

Please sign in to comment.