Skip to content

Commit 6715511

Browse files
committed
fix: Correct the 'save' method to not use an await function within a non async function.
1 parent f66fea1 commit 6715511

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Assets/Plugins/Source/Editor/EditorWindows/EOSSettingsWindow.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ private void Save()
217217
_productConfigEditor.Save();
218218

219219
// reload the product config editor
220-
await _productConfigEditor.LoadAsync();
220+
_productConfigEditor.Load();
221221

222222
// Save each of the platform config editors.
223223
foreach (IConfigEditor editor in _platformConfigEditors)

0 commit comments

Comments
 (0)