VSD Craft/ Mbox N3 Mackie Control shows "not found" in section and category

Greetings folks! I am having a problem where the Mackie control section of the Midi 3.1 on Stream Dock(not Stream Deck) shows “(not found)” in the section and function options.

Based on my research se.trevligaspel.midi.exe is not sending dropdown data. Unfortunately, it is a .exe, and I can’t edit it.

se.trevligaspel.midi.exe
↓ sends data
sdtools.common.js (UI handler)
↓ updates
HTML (your dropdowns)

function websocketOnMessage(evt) {
var jsonObj = JSON.parse(evt.data);

if (jsonObj.event === 'sendToPropertyInspector') {
    var payload = jsonObj.payload;
    loadConfiguration(payload);
    checkToken(payload);
}
else if (jsonObj.event === 'didReceiveSettings') {
    var payload = jsonObj.payload;
    loadConfiguration(payload.settings);
    checkToken(payload.settings);
}

}

Which based on this script;
else if (elem.classList.contains(“sdList”)) { // Dynamic dropdown
var items = payload[key];

Should populate;
payload[“A”] = [ …list of sections… ]
payload[“F”] = [ …list of functions… ]

Any assistance would be appreciated. Got help from A.I.

Ok! so the problem is solved, apparently the store within the VSD Stream Dock software installs the plugin from an outdated server (I think). To fix, uninstall the MIDI plugin within the VSD Stream Dock software, and use the following link from their website MIDI 3.1 . Both the website and the software say 3.1 but only the website works for the Mackie control. BTW you still have to change “Encoder” to “Knob” in the manifest.json file.