We are successfully using the project files API to find the files associated with a project
However, I noticed that in one of our projects, there is a room named "Bedroom & Ensuite 2".
When we fetch the files associated with this project, the resulting XML contains an element like the following:
<file id='...' url="..." name='XXXXXXXX - 1st Floor - Bedroom & Ensuite 2.jpg' date='1713956819' type='jpg' />
This is invalid, since ampersand (&) characters must be escaped in XML attributes, so our XML parser will not correctly parse this file name.
Please ensure your XML serialiser is configured correctly. Thank you.