Skip to content

Commit 8681c8f

Browse files
committed
Normalize data type of specLocation to char before adding to blacklist
1 parent 1b82605 commit 8681c8f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

nwbRead.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
'attributes', {{'.specloc', 'object_id'}},...
9898
'groups', {{}});
9999
if ~isempty(specLocation)
100-
blackList.groups{end+1} = specLocation;
100+
blackList.groups{end+1} = char(specLocation);
101101
end
102102

103103
softLinkWarningResetObj = types.untyped.SoftLink.disablePathDeprecationWarning(); %#ok<NASGU>

0 commit comments

Comments
 (0)