mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-10-03 16:58:44 -04:00
Recommended updates.
This commit is contained in:
parent
e1f1d4a959
commit
572a5300aa
4 changed files with 4 additions and 3 deletions
|
@ -312,7 +312,7 @@ class Database {
|
|||
*/
|
||||
static backup(version) {
|
||||
if (! this.backupPath) {
|
||||
console.info("Backup the database");
|
||||
console.info("Backing up the database");
|
||||
this.backupPath = this.dataDir + "kuma.db.bak" + version;
|
||||
fs.copyFileSync(Database.path, this.backupPath);
|
||||
|
||||
|
|
|
@ -452,7 +452,7 @@ exports.entryPage = "dashboard";
|
|||
socket.on("setup", async (username, password, callback) => {
|
||||
try {
|
||||
if ((await R.count("user")) !== 0) {
|
||||
throw new Error("Uptime Kuma has been set up. If you want to setup again, please delete the database.");
|
||||
throw new Error("Uptime Kuma has been initialized. If you want to run setup again, please delete the database.");
|
||||
}
|
||||
|
||||
let user = R.dispense("user");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue