Merge pull request #10801 from Alexsuperfly/screenshot-filename-space-fix
ImageCapture: only append space when filename isnt empty
This commit is contained in:
@@ -115,7 +115,7 @@ public class ImageCapture
|
|||||||
|
|
||||||
playerFolder.mkdirs();
|
playerFolder.mkdirs();
|
||||||
|
|
||||||
fileName += " " + format(new Date());
|
fileName += (fileName.isEmpty() ? "" : " ") + format(new Date());
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user