fix: 更新失败后不在终止程序

This commit is contained in:
Akizon77
2025-05-06 21:30:50 +08:00
parent a4b2c8e204
commit 0ec0eda400

View File

@@ -112,7 +112,7 @@ func update_komari() {
// 检查并更新 // 检查并更新
err := updater.CheckAndUpdate() err := updater.CheckAndUpdate()
if err != nil { if err != nil {
log.Fatalf("Update Failed: %v", err) log.Println("Update Failed: %v", err)
} }
} }