Fix forgotten save

This commit is contained in:
nicolas.dorier 2024-10-08 16:24:35 +09:00
parent ca4a7d8771
commit e5bb0bcba3
No known key found for this signature in database
GPG Key ID: 6618763EF09186FE

View File

@ -246,7 +246,9 @@ namespace BTCPayServer.Hosting
if (array.ToString() == newArray.ToString()) if (array.ToString() == newArray.ToString())
continue; continue;
blob["excludedPaymentMethods"] = newArray; blob["excludedPaymentMethods"] = newArray;
store.StoreBlob = blob.ToString();
} }
await ctx.SaveChangesAsync();
} }
private async Task MigrateBlockExplorerLinks() private async Task MigrateBlockExplorerLinks()