Исправлен баг с не правильной генерацией параметров для событий
This commit is contained in:
@@ -7,8 +7,8 @@ namespace mROA.Implementation
|
||||
{
|
||||
public class RepresentationModule : IRepresentationModule
|
||||
{
|
||||
private ISerializationToolkit? _serialization;
|
||||
private INextGenerationInteractionModule? _interaction;
|
||||
private ISerializationToolkit? _serialization;
|
||||
|
||||
public void Inject<T>(T dependency)
|
||||
{
|
||||
@@ -70,6 +70,11 @@ namespace mROA.Implementation
|
||||
}
|
||||
}
|
||||
|
||||
if (fromBuffer == null)
|
||||
{
|
||||
return Array.Empty<byte>();
|
||||
}
|
||||
|
||||
_interaction.HandleMessage(fromBuffer);
|
||||
return fromBuffer.Data;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user