From 0c4d4c03dc269c3dd5e0efa7c8f62e7f3fb2725e Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Sun, 17 Jul 2022 12:34:07 +0200 Subject: [PATCH] Changed to perform an async call --- I18N Commander/Processor/SectionProcessor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/I18N Commander/Processor/SectionProcessor.cs b/I18N Commander/Processor/SectionProcessor.cs index 560a712..2242d94 100644 --- a/I18N Commander/Processor/SectionProcessor.cs +++ b/I18N Commander/Processor/SectionProcessor.cs @@ -78,7 +78,7 @@ public static class SectionProcessor Depth = parent.Depth + 1, }; - db.Sections.Add(section); + await db.Sections.AddAsync(section); await db.SaveChangesAsync(); return section; }