mirror of
				https://github.com/binwiederhier/ntfy.git
				synced 2025-11-04 15:00:19 +01:00 
			
		
		
		
	Fix file extension detection; fix HTTPS port
This commit is contained in:
		
							parent
							
								
									5eca20469f
								
							
						
					
					
						commit
						9171e94e5a
					
				
					 2 changed files with 8 additions and 7 deletions
				
			
		| 
						 | 
				
			
			@ -293,7 +293,7 @@ func (s *Server) Run() error {
 | 
			
		|||
		errChan <- s.httpServer.ListenAndServe()
 | 
			
		||||
	}()
 | 
			
		||||
	if s.config.ListenHTTPS != "" {
 | 
			
		||||
		s.httpsServer = &http.Server{Addr: s.config.ListenHTTP, Handler: mux}
 | 
			
		||||
		s.httpsServer = &http.Server{Addr: s.config.ListenHTTPS, Handler: mux}
 | 
			
		||||
		go func() {
 | 
			
		||||
			errChan <- s.httpsServer.ListenAndServeTLS(s.config.CertFile, s.config.KeyFile)
 | 
			
		||||
		}()
 | 
			
		||||
| 
						 | 
				
			
			@ -479,7 +479,8 @@ func (s *Server) handlePublish(w http.ResponseWriter, r *http.Request, v *visito
 | 
			
		|||
		return err
 | 
			
		||||
	}
 | 
			
		||||
	m := newDefaultMessage(t.ID, "")
 | 
			
		||||
	if !body.LimitReached && utf8.Valid(body.PeakedBytes) {
 | 
			
		||||
	filename := readParam(r, "x-filename", "filename", "file", "f")
 | 
			
		||||
	if filename == "" && !body.LimitReached && utf8.Valid(body.PeakedBytes) {
 | 
			
		||||
		m.Message = strings.TrimSpace(string(body.PeakedBytes))
 | 
			
		||||
	} else if s.config.AttachmentCacheDir != "" {
 | 
			
		||||
		if err := s.writeAttachment(r, v, m, body); err != nil {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue