Merge pull request #3796 from Stromwerk/no-return-await

This commit is contained in:
Cody Robibero
2022-08-13 08:00:30 -06:00
committed by GitHub
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -34,7 +34,7 @@ class PluginManager {
// translations won't be loaded for skins until needed
return plugin;
} else {
return await this.#loadStrings(plugin);
return this.#loadStrings(plugin);
}
}