Skip to content
Snippets Groups Projects
Unverified Commit d0cb3b88 authored by William Grant's avatar William Grant Committed by GitHub
Browse files

Fix for loading objects.

parent d0fb684b
No related branches found
No related tags found
No related merge requests found
......@@ -441,7 +441,7 @@ function newdata=jdatadecode(data,varargin)
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'))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment