Skip to content

Commit

Permalink
Fix SaveToJsonFileAsync
Browse files Browse the repository at this point in the history
  • Loading branch information
antifree authored and korzh committed Apr 8, 2021
1 parent 51e5cb2 commit 68e302a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion easydata.net/src/EasyData.Core/MetaData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,7 @@ public async Task SaveToJsonFileAsync(string filePath, BitOptions options)
using (var stream = new FileStream(filePath, FileMode.Create, FileAccess.Write,
FileShare.None, 4096, true))
{
await LoadFromJsonStreamAsync(stream, options).ConfigureAwait(false);
await SaveToJsonStreamAsync(stream, options).ConfigureAwait(false);
}
}

Expand Down

0 comments on commit 68e302a

Please sign in to comment.