Missing Icons on Apex Legends Bios
Would like to report a minor issue with the Character Hub pages for Apex Legends.
This issue was found on a Chrome desktop browser as well as mobile.
These are two examples of pages that display this error.
https://www.ea.com/games/apex-legends/apex-legends/characters-hub/bloodhound
https://www.ea.com/games/apex-legends/apex-legends/characters-hub/caustic
The Icons for each Legend's powers are broken. This applies for every Legend.
The issue is caused by invalid query parameters on the image link. This bloodhound link for example is as follows
https://images.ctfassets.net/rs6bgs1g8dbr/3rP24eW8ooBJ62zWRKWQyp/89a5b915ed945a42fc7f20ce02448b5f/apex-grid-tile-legends-abilities-tactical-bloodhound.png?im=Resize=(2560)&q=80
This returns a json string of
{ "sys": { "type": "Error", "id": "ParameterNotAllowed", "details": { "parameters": [ "im" ] } } }
Removing the "im" parameter returns this string
{ "sys": { "type": "Error", "id": "ParameterNotAllowed", "details": { "parameters": [ "Resize" ] } } }
Removing both parameters will display the image correctly
https://images.ctfassets.net/rs6bgs1g8dbr/3rP24eW8ooBJ62zWRKWQyp/89a5b915ed945a42fc7f20ce02448b5f/apex-grid-tile-legends-abilities-tactical-bloodhound.png?q=80
Further information
The image links are under the AbillityPanel_contentWrapper divs
Here is an example for Bloodhound
<div class="AbilityPanel_contentWrapper__uW99Y">
</div>
Each one of these divs contains 5 versions of this image with the resize set to different sizes depending on the current screen width. The last one is a default and the link does work.
Hope this helps out the devs, slow day at work over here.