cybergarage-upnp icon indicating copy to clipboard operation
cybergarage-upnp copied to clipboard

service.getAction is return null

Open dorobonneko opened this issue 3 years ago • 0 comments

Device.java 270 line String absUrl = locationURLStr + urlString;

need change to

URL locationURL = new URL(locationURLStr); // 重新拼接url String absUrl = locationURL.getProtocol() + "://" + locationURL.getHost() + ":" + locationURL.getPort() + urlString;

service.getAction can be work

dorobonneko avatar Feb 06 '22 14:02 dorobonneko