Error Waiting to Happen
Changed the strange `true` to `value`.
This commit is contained in:
parent
9b92917925
commit
c855c584c8
1 changed files with 2 additions and 2 deletions
|
@ -12,11 +12,11 @@ namespace AsterNET.Manager.Event
|
||||||
public bool Reconnect
|
public bool Reconnect
|
||||||
{
|
{
|
||||||
get { return this.reconnect; }
|
get { return this.reconnect; }
|
||||||
set { this.reconnect = true; }
|
set { this.reconnect = value; }
|
||||||
}
|
}
|
||||||
|
|
||||||
public ConnectionStateEvent(ManagerConnection source)
|
public ConnectionStateEvent(ManagerConnection source)
|
||||||
: base(source)
|
: base(source)
|
||||||
{ }
|
{ }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue