I've been wracking my brain for hours, but can't figure this one out. I've added a simple override for both GET and PUT protocols that just print to the log and return undefined, to allow the default behavior. When I call http.get() this override is getting hit, but when I call http.put(), it is not.
There's not a lot of documentation around the requirements to hook this up correctly, aside from implementing a method with signature put(RequestInfo), and I'm not sure how else to debug why it's not getting called.
Link to my source. Pretty basic start of project. Just trying to update a single field on one of the two tables.
I've been wracking my brain for hours, but can't figure this one out. I've added a simple override for both GET and PUT protocols that just print to the log and return undefined, to allow the default behavior. When I call http.get() this override is getting hit, but when I call http.put(), it is not.
There's not a lot of documentation around the requirements to hook this up correctly, aside from implementing a method with signature put(RequestInfo), and I'm not sure how else to debug why it's not getting called.
Link to my source. Pretty basic start of project. Just trying to update a single field on one of the two tables.