This commit is contained in:
Mirco Wittrien 2020-05-08 08:47:23 +02:00
parent 2bb2b6fc74
commit f100d2ef56
2 changed files with 2 additions and 2 deletions

View File

@ -53,7 +53,7 @@
BDFDB.LogUtils.log("Loading library.");
BDFDB.PluginUtils = {};
BDFDB.PluginUtils.init = function (plugin) {
BDFDB.PluginUtils.init = BDFDB.loadMessage = function (plugin) {
plugin.name = plugin.name || (typeof plugin.getName == "function" ? plugin.getName() : null);
plugin.version = plugin.version || (typeof plugin.getVersion == "function" ? plugin.getVersion() : null);
plugin.author = plugin.author || (typeof plugin.getAuthor == "function" ? plugin.getAuthor() : null);

File diff suppressed because one or more lines are too long