|
@@ -1527,8 +1527,15 @@ namespace InABox.Core
|
|
|
if(b != 0)
|
|
|
{
|
|
|
var exp = reader.DeserialiseExpression(typeof(T), b);
|
|
|
- Property = CoreUtils.ExpressionToString(typeof(object), exp);
|
|
|
- Logger.Send(LogType.Information, "", $"Non-zero byte: {Property} ({exp.Type})");
|
|
|
+ if(exp is ParameterExpression)
|
|
|
+ {
|
|
|
+ Property = "";
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ Property = CoreUtils.ExpressionToString(typeof(object), exp);
|
|
|
+ Logger.Send(LogType.Information, "", $"Non-zero byte: {Property} ({exp.Type})");
|
|
|
+ }
|
|
|
}
|
|
|
else
|
|
|
{
|