Results 2 issues of Don Jones

I've defined the following: ``` @WebRoute(GET, '/writedevice//') def handleWriteDevice(microWebSrv2, request, args) : print() print('Writing device',args['mac'],'to',args['target']) WriteDevice(args['mac'],args['target']) request.Response.ReturnOk() ``` Upon running the project, I can see that the route is registered:...

This may be by design; trying to confirm. If I boot up a minimal MWS2, it serves /index.html just fine. But if I start defining routes, /index.html no longer serves—it...