1
0
Fork 0
mirror of https://github.com/binwiederhier/ntfy.git synced 2025-09-27 14:00:23 +02:00

Security updates

This commit is contained in:
binwiederhier 2025-05-21 18:49:19 -04:00
parent 630f2957de
commit d1ac8d03e0
7 changed files with 2449 additions and 2266 deletions

View file

@ -424,9 +424,9 @@ func execServe(c *cli.Context) error {
// Run server
s, err := server.New(conf)
if err != nil {
log.Fatal(err.Error())
log.Fatal("%s", err.Error())
} else if err := s.Run(); err != nil {
log.Fatal(err.Error())
log.Fatal("%s", err.Error())
}
log.Info("Exiting.")
return nil