* Avoid extra load at EOF if no pages are used

This commit is contained in:
michael 2018-07-17 07:52:46 +00:00
parent e3e8ff02b2
commit ffc2238def

View File

@ -281,9 +281,14 @@ begin
end
else
begin
R.FXHR.open('GET',URL,true);
R.FXHR.send;
Result:=True;
if (loAtEOF in R.LoadOptions) and (Connection.PageParam='') then
R.Success:=rrEOF
else
begin
R.FXHR.open('GET',URL,true);
R.FXHR.send;
Result:=True;
end;
end;
end;