Tried to run the IMWS Documentation App today and got no results... so, launched the app in the browser and found it returned an error .. perhaps the documentation file on the server got moved or renamed? Thx - Andy.
index.html:91 Doh! Problem parsing the JSON. Check the JSON documentation source file on the server!
IMWS.get('discover').then(function(response) {
imwsDoc.resources = response.resources;
createTable();
},function(error) {
console.log('Doh! Problem parsing the JSON. Check the JSON documentation source file on the server!');
});
It's caused by a missing/pending comma. See bug #02518 https://www.photools.com/release-notes/
The server is IMatch (IMWS) and the schema file to fix is:
"C:\ProgramData\photools.com\IMatch6\IMWS\resources\json\schema.json"
Open it in VS Code and remove the comma.
oooh... sorry.. I guess I didn't read those (or I did.. and then forgot!). Thx.. fixed locally!