I really like the new release candidate, but I found a problem

After compiling a weblaz HTTP server application which was created with Lazarus 1.6.4 the project does not work anymore.
The routing seems to not work correctly. The HTTP server just responses
:Module Error The application encountered the following error: Error: Not foundIt seems like the routing is not working, I cannot reach any of the existing OnRequest Methods of the TFPWebModule.
The bug is really easy to produce. Just install weblaz (shipped with Lazarus 1.8RC4), and create a new HTTP server application. A simple test does not even require the use of actions, you can just create the following OnRequest method:
procedure TFPWebModule1.DataModuleRequest(Sender: TObject; ARequest: TRequest;
AResponse: TResponse; Var Handled: Boolean);
begin
AResponse.Content:='This test is working, great :)';
AResponse.Code:=200;
Handled:=True;
end;
Thank you for your work
