Improve alert time format

This commit is contained in:
emanuele-f 2018-12-20 10:31:32 +01:00
parent 19052bcd62
commit 46b950b521
2 changed files with 9 additions and 2 deletions

View file

@ -218,4 +218,8 @@ function format_utils.formatEpochShort(epoch_begin, epoch_end, epoch)
return format_utils.formatEpoch(epoch)
end
function format_utils.formatPastEpochShort(epoch)
return format_utils.formatEpochShort(epoch, os.time(), epoch)
end
return format_utils