Skip to content

Commit

Permalink
fix: [CO-803] Fix NPE while exporting user data in tgz format (#293)
Browse files Browse the repository at this point in the history
  • Loading branch information
keshavbhatt authored Jul 26, 2023
1 parent 3bb3337 commit 3a037ca
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@ private ArchiveOutputStream saveItem(
throws ServiceException {

String ext = null, name = null;
StringBuilder extra = null;
StringBuilder extra = new StringBuilder();
Integer fid = mi.getFolderId();
String fldr;
InputStream is = null;
Expand Down

0 comments on commit 3a037ca

Please sign in to comment.