From 96b318a5bbe9210745c1e36d52a95a0adbfb3e6a Mon Sep 17 00:00:00 2001 From: Reese Norris Date: Fri, 23 May 2025 20:59:05 -0700 Subject: [PATCH] silently dismiss flightplan requests when no flightplan exists --- fsd/handler.go | 1 - 1 file changed, 1 deletion(-) diff --git a/fsd/handler.go b/fsd/handler.go index d9d6f02..1f6def7 100644 --- a/fsd/handler.go +++ b/fsd/handler.go @@ -366,7 +366,6 @@ func (s *Server) handleClientQueryFlightplanRequest(client *Client, packet []byt fplInfo := targetClient.flightPlan.Load() if fplInfo == "" { - client.sendError(NoFlightPlanError, "No flightplan for: "+targetCallsign) return }