convert linux time to seconds

This commit is contained in:
Zane C. B-H 2019-08-26 20:29:54 -05:00
parent 8958b1ddd0
commit 07dfadee26
1 changed files with 4 additions and 0 deletions

View File

@ -731,6 +731,10 @@ sub timeString{
my $self=$_[0];
my $time=$_[1];
if ( $^O =~ /^linux$/ ){
$time=$time/100000;
}
my $hours=0;
if ( $time >= 3600 ){
$hours = $time / 3600;