Do not remove RPC message callbacks since we can get multiple responses to one client message. TODO.

feature-npv2
Icedream 2014-05-08 10:49:56 +02:00
parent 929328fdd2
commit f2e648f18b
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ namespace NPSharp.RPC
return message;
_callbacks[message.MessageId].Invoke(message);
_callbacks.Remove(message.MessageId);
// TODO: Callback cleanup
return message;
}