Import events not working on ITAB data

There is a bug in brainstorm3\toolbox\io\in_fopen_itab.m
The EVENTS import is not working, since an event type is identified by an integer and not a string. A tested solution is to change line 170 from:
iOcc = find(strcmpi(allType, uniqueType(iEvt)));
to
iOcc = find(allType == uniqueType(iEvt));

Would you mind opening a PR on the GitHub repository to submit this code change?
This helps for future bug tracking, to know who to contact when a problem is detected on changed code.
https://github.com/brainstorm-tools/brainstorm3

Create a fork of the project, edit the file in your fork (you can do it with the github interface, no need to install git on your computer), then create the PR.
If you don't know how to do any of this, please let me know and I'll do it for you.

This is bug is now fixed in Brainstorm!