Could this be a fix? Line 1106
Or some other way to ensure it is not null when items are created.
} else if (item.inviteOnly) {
type += 'Invite Only';
if (item.regionRestricted) {
type += 'Region Restricted';
}
// setting to empty string for fix?
if (item.url === null) {
item.url = ''
}
When using the custom export feature on invite only links, the item.url is Null and this line fails
https://github.com/rafaelgomesxyz/esgst/blob/1fa19ecf17d5e484c3d4db077fe5b886f0399881/src/modules/General/MultiManager.jsx#L1153
Could this be a fix? Line 1106 Or some other way to ensure it is not null when items are created.
Thank you