1
0
mirror of https://github.com/louislam/uptime-kuma.git synced 2025-06-27 00:51:30 +02:00

Merge pull request #1229 from Computroniks/#1209-Logout-button-in-navbar

Add #1209: logout button in navbar
This commit is contained in:
Louis Lam
2022-04-19 19:59:52 +08:00
committed by GitHub
6 changed files with 127 additions and 20 deletions

View File

@ -87,5 +87,7 @@ module.exports.autoStart = async (token) => {
module.exports.stop = async () => {
console.log("Stop cloudflared");
cloudflared.stop();
if (cloudflared) {
cloudflared.stop();
}
};