feat: remove blank characters and ending '/' first

This commit is contained in:
小造xu_zh 2023-07-20 09:33:27 +00:00
parent d7e12dc92d
commit 0684313ec9

View File

@ -12,7 +12,9 @@ class PushDeer extends NotificationProvider {
let endpoint = "/message/push";
let pushdeerlink;
if (notification.pushdeerServer) {
pushdeerlink = `${notification.pushdeerServer}${endpoint}`;
// remove blank characters and ending '/'
let customServer = notification.pushdeerServer.trim().replace(/\/*$/, "");
pushdeerlink = `${customServer}${endpoint}`;
} else {
pushdeerlink = `${defaultServer}${endpoint}`;
}