Webp images media is not resized to match destination size

here is an example
https://nononooo2020.wixsite.com/webp-scaling-bug

its the same image, but one copy was converted to webp, with the same size

the jpeg source media is set to https://static.wixstatic.com/media/11062b_854f3d19a9da4d6db5f6426cea0e6ab9~mv2.jpg/v1/fill/w_323,h_216,al_c,q_80,usm_0.66_1.00_0.01,enc_auto/11062b_854f3d19a9da4d6db5f6426cea0e6ab9~mv2.jpg

but the webp is

without the /v1/fill/w_323,h_216,al_c,q_80,usm_0.66_1.00_0.01,enc_auto/

I added the resize suffix manually, and the server generates the resize image correctly

I tried to manipulate the image src in my code to something like
wix:image://v1/5df407_2070646b59ba45b691f6f65a89def071~mv2.webp/image2.webp#originWidth=300&originHeight=300

but it just loaded the full image url

Is that intentional? any workaround except replacing the images we uploaded?
is that something that going to be fixed in the medium future ?

Tnx!

I’m not sure why that is the default but you can get the same effect by reusing that portion of the string from the jpg’s URL: https://static.wixstatic.com/media/5df407_2070646b59ba45b691f6f65a89def071~mv2.webp/v1/fill/w_323,h_216,al_c,q_80,usm_0.66_1.00_0.01,enc_auto/5df407_2070646b59ba45b691f6f65a89def071~mv2.webp

Also the last segment of the url can be any filename.webp as in: https://static.wixstatic.com/media/5df407_2070646b59ba45b691f6f65a89def071~mv2.webp/v1/fill/w_323,h_216,al_c,q_80,usm_0.66_1.00_0.01,enc_auto/file.webp

tnx!
I figured how to add the url suffix, but did not consider puting the full url in the code.
but this is still an issue for anyone not fixing it explicitly in their code