I am writing to report a small bug I encountered in the sitepress-multilingual-cms plugin regarding asset loading.
I noticed a 400 (Bad Request) error in my browser console related to an SVG file within the OTGS Installer vendor folder. The issue appears to be caused by a malformed URL containing a double slash (//).
The specific error: GET .../wp-content/plugins/sitepress-multilingual-cms/vendor/otgs/installer//res/img/icon-wpml-info-white.svg 400 (Bad Request)
Diagnosis: It seems to be a string concatenation issue in the code. The base path for the OTGS Installer likely has a trailing slash, and the code appends the relative path with another leading slash (e.g., /res/img/...), resulting in the invalid //res/ path.
Could you please pass this to your development team to fix in the next update? My server configuration rejects these URLs, so I assume others might face the same issue.