Skip to content

Commit

Permalink
[miio] fix timestamp for safefiles (openhab#8282)
Browse files Browse the repository at this point in the history
Fix missing minutes

Signed-off-by: Marcel Verpaalen <[email protected]>
  • Loading branch information
marcelrv authored and markus7017 committed Sep 18, 2020
1 parent 1b33b0a commit 66b4a00
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
public class MiIoVacuumHandler extends MiIoAbstractHandler {
private final Logger logger = LoggerFactory.getLogger(MiIoVacuumHandler.class);
private static final float MAP_SCALE = 2.0f;
private static final SimpleDateFormat DATEFORMATTER = new SimpleDateFormat("yyyyMMdd-HHss");
private static final SimpleDateFormat DATEFORMATTER = new SimpleDateFormat("yyyyMMdd-HHmmss");
private static final String MAP_PATH = ConfigConstants.getUserDataFolder() + File.separator + BINDING_ID
+ File.separator;
private final ChannelUID mapChannelUid;
Expand Down

0 comments on commit 66b4a00

Please sign in to comment.