We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c47e35d commit 4bb370aCopy full SHA for 4bb370a
eddn_listener/schemas/journalv5.js
@@ -47,6 +47,9 @@ function Journal() {
47
48
this.trackSystem = async (message, header) => {
49
let mongoSession = await mongoose.startSession()
50
+ if (parseFloat(header.gameversion) < 4) {
51
+ throw new Error('Message from Legacy Game Version ' + header.gameversion)
52
+ }
53
if (message.event === 'FSDJump' || message.event === 'Location' || message.event === 'CarrierJump') {
54
try {
55
// Check if the message is well formed
0 commit comments