Merge pull request #10801 from Alexsuperfly/screenshot-filename-space-fix

ImageCapture: only append space when filename isnt empty
This commit is contained in:
Adam
2020-02-15 19:08:28 -05:00
committed by GitHub

View File

@@ -115,7 +115,7 @@ public class ImageCapture
playerFolder.mkdirs();
fileName += " " + format(new Date());
fileName += (fileName.isEmpty() ? "" : " ") + format(new Date());
try
{