The actual call for application's icon on a report page is /reports/<application-id>/icon which return a 302 to /<language-code>/reports/<application-id>/icon/.
This PR change this first call to directly call the good icon by:
Adding the language code
Adding a leading slash
Note: A better solution would be to force django to serve this icon without language redirection.
The actual call for application's icon on a report page is
/reports/<application-id>/icon
which return a 302 to/<language-code>/reports/<application-id>/icon/
.This PR change this first call to directly call the good icon by:
Note: A better solution would be to force django to serve this icon without language redirection.