Skip to content

Commit

Permalink
Bump v5.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
silvioprog committed Jan 17, 2021
1 parent b3662c6 commit 61d91b6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Package/BrookTardigrade.dproj
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,9 @@
<PropertyGroup Condition="'$(Cfg_1_Win32)'!=''">
<DCC_RemoteDebug>false</DCC_RemoteDebug>
<VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
<VerInfo_Keys>CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=5.2.2.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProgramID=com.embarcadero.$(MSBuildProjectName);ProductName=$(MSBuildProjectName);ProductVersion=5.2.0.0;Comments=</VerInfo_Keys>
<VerInfo_Keys>CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=5.2.3.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProgramID=com.embarcadero.$(MSBuildProjectName);ProductName=$(MSBuildProjectName);ProductVersion=5.2.3.0;Comments=</VerInfo_Keys>
<VerInfo_MinorVer>2</VerInfo_MinorVer>
<VerInfo_Release>2</VerInfo_Release>
<VerInfo_Release>3</VerInfo_Release>
</PropertyGroup>
<PropertyGroup Condition="'$(Cfg_2)'!=''">
<DCC_LocalDebugSymbols>false</DCC_LocalDebugSymbols>
Expand Down
2 changes: 1 addition & 1 deletion Package/BrookTardigrade.lpk
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with Brook framework; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA"/>
<Version Major="5" Minor="2" Release="2"/>
<Version Major="5" Minor="2" Release="3"/>
<Files Count="23">
<Item1>
<Filename Value="../Source/BrookDefines.inc"/>
Expand Down
6 changes: 5 additions & 1 deletion Source/BrookHTTPServer.pas
Original file line number Diff line number Diff line change
Expand Up @@ -469,10 +469,14 @@ class procedure TBrookHTTPServer.DoRequestCallback(Acls: Pcvoid;
VReq := VSrv.CreateRequest(Areq);
VRes := VSrv.CreateResponse(Ares);
try
if (VSrv.FNoFavicon and VReq.IsFavicon) or (VRes.IsEmpty) then
if VSrv.FNoFavicon and VReq.IsFavicon then
VRes.SendEmpty
else
begin
VSrv.HandleRequest(VReq, VRes);
if VRes.IsEmpty then
VRes.SendEmpty;
end;
finally
VRes.Free;
VReq.Free;
Expand Down

0 comments on commit 61d91b6

Please sign in to comment.