From ddf8a7a692000a9bf9d21a7b6a399a97f46c8f36 Mon Sep 17 00:00:00 2001 From: Louis Lam Date: Thu, 14 Apr 2022 10:43:59 +0800 Subject: [PATCH] Fix camelCase --- server/notification.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/notification.js b/server/notification.js index 88cfb8900..8783a7cdd 100644 --- a/server/notification.js +++ b/server/notification.js @@ -31,7 +31,7 @@ const WeCom = require("./notification-providers/wecom"); const GoogleChat = require("./notification-providers/google-chat"); const Gorush = require("./notification-providers/gorush"); const Alerta = require("./notification-providers/alerta"); -const Onebot = require("./notification-providers/onebot"); +const OneBot = require("./notification-providers/onebot"); class Notification { @@ -75,7 +75,7 @@ class Notification { new Gorush(), new Alerta(), new GoogleChat(), - new Onebot(), + new OneBot(), ]; for (let item of list) {