Change default protocol logic
This commit is contained in:
parent
7b9a525c06
commit
c9a65ae034
|
@ -932,10 +932,11 @@ Begin
|
||||||
Else
|
Else
|
||||||
ThisUser.ScreenSize := Config.DefScreenSize;
|
ThisUser.ScreenSize := Config.DefScreenSize;
|
||||||
|
|
||||||
If Config.UserProtocol > 0 Then
|
Case Config.UserProtocol of
|
||||||
ThisUser.Protocol := Session.FileBase.SelectProtocol(False, True)
|
0 : ThisUser.Protocol := #0;
|
||||||
Else
|
1 : ThisUser.Protocol := Config.FProtocol;
|
||||||
ThisUser.Protocol := Config.FProtocol;
|
2 : ThisUser.Protocol := Session.FileBase.SelectProtocol(False, True);
|
||||||
|
End;
|
||||||
|
|
||||||
GetPassword(False);
|
GetPassword(False);
|
||||||
End;
|
End;
|
||||||
|
|
Loading…
Reference in New Issue