I've recieved an exception from protocol_notification/layer.py +39
def recvNotification(self, node):
if node["type"] == "picture":
....
else:
self.raiseErrorForNode(node)
due to notification of type 'web'. Obviously it is no managed on this function and I've fixed this issue adding:
if node["type"] == "web
pass
However, I'd like to manage it properly so I need to know what does it mean. Does somebody know?
I've recieved an exception from protocol_notification/layer.py +39
due to notification of type 'web'. Obviously it is no managed on this function and I've fixed this issue adding:
However, I'd like to manage it properly so I need to know what does it mean. Does somebody know?