We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91300ac commit c268324Copy full SHA for c268324
1 file changed
StabilityMatrix.Core/Database/LiteDbContext.cs
@@ -89,10 +89,10 @@ private LiteDatabaseAsync CreateDatabase()
89
90
var options = new RebuildOptions
91
{
92
- Collation = new Collation(CultureInfo.CurrentCulture.LCID, CompareOptions.Ordinal),
+ Collation = new Collation(CultureInfo.InvariantCulture.LCID, CompareOptions.Ordinal),
93
};
94
95
- db.RebuildAsync(options).SafeFireAndForget();
+ db.RebuildAsync(options).GetAwaiter().GetResult();
96
}
97
98
catch (IOException e)
0 commit comments