Skip to content

Commit

Permalink
fix for filename for slides
Browse files Browse the repository at this point in the history
  • Loading branch information
SteffenHankiewicz committed Aug 6, 2024
1 parent efdb707 commit 5062750
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,8 @@ public boolean startExport() {
// get the new file name for the image and reuse if created previously
String exportFileName = fileMap.get(realFileNameWithoutExtension);
if (exportFileName == null) {
fileMap.put(realFileNameWithoutExtension, identifier);
exportFileName = identifier;
fileMap.put(realFileNameWithoutExtension, exportFileName);
}

// add file element
Expand Down

0 comments on commit 5062750

Please sign in to comment.