We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d1d69a commit 1be38eaCopy full SHA for 1be38ea
1 file changed
src/Horse.BasicAuthentication.pas
@@ -154,7 +154,7 @@ procedure Middleware(Req: THorseRequest; Res: THorseResponse; Next: {$IF DEFINED
154
except
155
on E: EEncodingError do
156
begin
157
- Res.Send('Erro na conversão do Base64. Certifique-se de que a string Base64 está correta.').Status(THTTPStatus.InternalServerError);
+ Res.Send('Base64 conversion error. Make sure that the Base64 string is correct.').Status(THTTPStatus.InternalServerError);
158
raise EHorseCallbackInterrupted.Create;
159
end;
160
on E: exception do
0 commit comments