From 1a89056c61480218c2fe6dd4e0d40d03c21ce642 Mon Sep 17 00:00:00 2001 From: Justin Baur <136baur@gmail.com> Date: Thu, 30 Jun 2022 12:19:15 -0400 Subject: [PATCH] Create new file when adding license file and updating (#2092) --- src/Core/Services/Implementations/OrganizationService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Core/Services/Implementations/OrganizationService.cs b/src/Core/Services/Implementations/OrganizationService.cs index 54cd1a0b1e..197cdd4d4a 100644 --- a/src/Core/Services/Implementations/OrganizationService.cs +++ b/src/Core/Services/Implementations/OrganizationService.cs @@ -729,7 +729,7 @@ namespace Bit.Core.Services var dir = $"{_globalSettings.LicenseDirectory}/organization"; Directory.CreateDirectory(dir); - using var fs = System.IO.File.OpenWrite(Path.Combine(dir, $"{organization.Id}.json")); + await using var fs = new FileStream(Path.Combine(dir, $"{organization.Id}.json"), FileMode.Create); await JsonSerializer.SerializeAsync(fs, license, JsonHelpers.Indented); return result; } @@ -915,7 +915,7 @@ namespace Bit.Core.Services var dir = $"{_globalSettings.LicenseDirectory}/organization"; Directory.CreateDirectory(dir); - using var fs = System.IO.File.OpenWrite(Path.Combine(dir, $"{organization.Id}.json")); + await using var fs = new FileStream(Path.Combine(dir, $"{organization.Id}.json"), FileMode.Create); await JsonSerializer.SerializeAsync(fs, license, JsonHelpers.Indented); organization.Name = license.Name;