Skip to content

Commit

Permalink
condition typo fix!
Browse files Browse the repository at this point in the history
  • Loading branch information
Supinic committed Dec 17, 2024
1 parent 4c5fd09 commit b59927c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion singletons/logger.js
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ module.exports = class LoggerSingleton {
* @returns {Promise<void>}
*/
async push (message, userData, channelData, platformData) {
if (!this.#presentTables === null) {
if (this.#presentTables === null) {
return;
}

Expand Down

0 comments on commit b59927c

Please sign in to comment.