Skip to content

Commit

Permalink
Fix isempty bug for doc data download
Browse files Browse the repository at this point in the history
  • Loading branch information
mathieuboudreau committed Nov 22, 2023
1 parent e8c3312 commit 7968a04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Common/AbstractModel.m
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ function saveObj(obj, suffix)
URL = urlFull;
end

if exist('docException','var') && ~isempty(str2double(getenv('ISDOC')))
if exist('docException','var') && ~isempty(getenv('ISDOC'))
try
URL = docException;
catch
Expand Down

0 comments on commit 7968a04

Please sign in to comment.