From 98f215e6ade7cf14766467cd2cbd3466d86689b1 Mon Sep 17 00:00:00 2001 From: Athanasius Date: Sun, 17 Oct 2021 16:46:11 +0100 Subject: [PATCH] EDDN: Remove `horizons` flag from navroute messages As with `odyssey` this isn't currently in the not-yet-live schema. --- plugins/eddn.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/plugins/eddn.py b/plugins/eddn.py index c2163509..07071a32 100644 --- a/plugins/eddn.py +++ b/plugins/eddn.py @@ -929,9 +929,14 @@ Msg:\n{msg}''' ####################################################################### # Elisions ####################################################################### - # WORKAROUND WIP EDDN schema | 2021-09-27: This will reject with the Odyssey flag present + # WORKAROUND WIP EDDN schema | 2021-10-17: This will reject with the Odyssey or Horizons flags present if 'odyssey' in entry: del entry['odyssey'] + + if 'horizons' in entry: + del entry['horizons'] + + # END WORKAROUND ####################################################################### #######################################################################