Remove redundant await from pluginManager

This commit is contained in:
Kalin K 2022-08-09 14:53:43 +03:00 committed by GitHub
parent 27d1b79f87
commit 560583eccf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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);
}
}