Skip to content

Commit

Permalink
chore: update pluginHandler.js (#6569)
Browse files Browse the repository at this point in the history
ocurred -> occurred
  • Loading branch information
eltociear authored Nov 30, 2024
1 parent da5d03b commit 1816749
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pluginHandler.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ module.exports.pluginHandler = function (parent) {
try {
obj.plugins[p][hookName](...args);
} catch (e) {
console.log("Error ocurred while running plugin hook" + p + ':' + hookName + ' (' + e + ')');
console.log("Error occurred while running plugin hook" + p + ':' + hookName + ' (' + e + ')');
}
}
}
Expand Down Expand Up @@ -205,7 +205,7 @@ module.exports.pluginHandler = function (parent) {
panel[p].header = obj.plugins[p].on_device_header();
panel[p].content = obj.plugins[p].on_device_page();
} catch (e) {
console.log("Error ocurred while getting plugin views " + p + ':' + ' (' + e + ')');
console.log("Error occurred while getting plugin views " + p + ':' + ' (' + e + ')');
}
}
}
Expand Down

0 comments on commit 1816749

Please sign in to comment.