hungdluit / flowlib

Automatically exported from code.google.com/p/flowlib
0 stars 0 forks source link

Small Bug In IF Conditions #16

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
In file AdcProtocol.cs at line 1211: 

Update(con, new FmdcEventArgs(Actions.TransferRequest, new
TransferRequest(usr.ID, hub, usr.UserInfo, true)));

if (usr.UserInfo.ContainsKey(UserInfo.SECURE))
    hub.Send(new RCM(usr.ID, hub, hub.Me.ID, usr.ID));
else
    hub.Send(new RCM(usr.ID, hub, "ADCS/0.10", hub.Me.ID, usr.ID));
break;

Should be:

if (usr.UserInfo.ContainsKey(UserInfo.SECURE))
    hub.Send(new RCM(usr.ID, hub, "ADCS/0.10", hub.Me.ID, usr.ID));
else
    hub.Send(new RCM(usr.ID, hub, hub.Me.ID, usr.ID));
break;

What version of the product are you using?
Flowlib (20080628)

Original issue reported on code.google.com by fadil.kh...@gmail.com on 7 Dec 2008 at 2:38

GoogleCodeExporter commented 8 years ago

Original comment by blomman84 on 7 Dec 2008 at 6:13

GoogleCodeExporter commented 8 years ago

Original comment by blomman84 on 9 Dec 2008 at 5:28