1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-17 17:42:20 +03:00

Merge pull request #1594 from EDCD/fix/1593/eddn-delocalise-everything

EDDN: Ensure *all* _Localised key/values removed
This commit is contained in:
Athanasius 2022-06-17 12:51:09 +01:00 committed by GitHub
commit 449e696383
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1125,6 +1125,9 @@ class EDDN:
del entry['horizons']
# END WORKAROUND
# In case Frontier ever add any
entry = filter_localised(entry)
#######################################################################
#######################################################################
@ -1185,6 +1188,13 @@ class EDDN:
# WORKAROUND END
#######################################################################
#######################################################################
# Elisions
#######################################################################
# In case Frontier ever add any
entry = filter_localised(entry)
#######################################################################
#######################################################################
# Augmentations
#######################################################################
@ -1228,6 +1238,13 @@ class EDDN:
# "event": "FSSAllBodiesFound",
# "timestamp": "2022-02-09T18:15:14Z"
# }
#######################################################################
# Elisions
#######################################################################
# In case Frontier ever add any
entry = filter_localised(entry)
#######################################################################
#######################################################################
# Augmentations
#######################################################################