ImageCapture: only append space when filename isnt empty

This commit is contained in:
Alexsuperfly
2020-02-14 14:59:59 -05:00
parent ed8a1b92ba
commit 57167ff1cc

View File

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