Skip to content

Commit

Permalink
Fix for loading objects.
Browse files Browse the repository at this point in the history
  • Loading branch information
wrgrant authored Sep 29, 2020
1 parent d0fb684 commit d0cb3b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jdatadecode.m
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@
end

%% handle bytestream and arbitrary matlab objects
if(isfield(data,N_('_ByteStream_')) && isfield(data,N_('_DataInfo_'))==2)
if(isfield(data,N_('_ByteStream_')) && isfield(data,N_('_DataInfo_')))
newdata=cell(len,1);
for j=1:len
if(isfield(data(j).(N_('_DataInfo_')),'MATLABObjectClass'))
Expand Down

0 comments on commit d0cb3b8

Please sign in to comment.