Fix handling unknown notification

This commit is contained in:
Pawel Kierski
2019-03-04 11:52:08 +01:00
parent 43556a0470
commit 300ade5d43

View File

@@ -104,6 +104,7 @@ class Server():
method = self._notifications.get(request.method)
if not method:
logging.error("Received uknown notification: %s", request.method)
return
callback, internal = method
if internal: