Merge branch 'master' into features/Improvement_calling_event

This commit is contained in:
zsender 2018-07-06 01:06:39 +03:00 committed by GitHub
commit d5e78e5284
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -407,4 +407,4 @@
<PostBuildEvent>
</PostBuildEvent>
</PropertyGroup>
</Project>
</Project>

View file

@ -12,11 +12,11 @@ namespace AsterNET.Manager.Event
public bool Reconnect
{
get { return this.reconnect; }
set { this.reconnect = true; }
set { this.reconnect = value; }
}
public ConnectionStateEvent(ManagerConnection source)
: base(source)
{ }
}
}
}