Error with set acquisition date

Hi,
When using the "set aqcuisition date" function to change the aqcuisition date of raw file data, I have encountered a problem where certain dates are not accepted and it returns the message "Invalid date."
It appears that there is a problem with the conditions at line 3015 of panel_record.m.

if (length(vecDate) < 3) || (vecDate(1) <= 0) || (vecDate(1) >= 31) || (vecDate(2) <= 0) || (vecDate(2) >= 12) || (vecDate(3) < 1700)
Are these "vecDate(1) > 31" and "vecDate(2) > 12" the correct conditions?
The problem appeares in ver. 28-Mar-2024.
Thank you in advance for your help.

Thanks for the heads-up, this is fixed at commit 133f5d3

Update your Brainstorm instance to get the fix

Thank you very much. I've confirmed that it has been fixed in the latest version.