1
0
Fork 0
mirror of https://github.com/binwiederhier/ntfy.git synced 2025-05-25 00:07:36 +02:00

Fix baseURL check

This commit is contained in:
Philipp Heckel 2022-01-21 14:17:59 -05:00
parent 8af9a97518
commit aab705f4a4
2 changed files with 3 additions and 3 deletions
server

View file

@ -269,7 +269,7 @@ func (s *Server) Run() error {
s.mu.Unlock()
go s.runManager()
go s.runAtSender()
go s.runFirebaseKeepliver()
go s.runFirebaseKeepaliver()
return <-errChan
}
@ -1052,7 +1052,7 @@ func (s *Server) runAtSender() {
}
}
func (s *Server) runFirebaseKeepliver() {
func (s *Server) runFirebaseKeepaliver() {
if s.firebase == nil {
return
}