Fix this later
This commit is contained in:
parent
0aa54ca467
commit
a565a604e8
1 changed files with 4 additions and 0 deletions
|
@ -170,10 +170,14 @@ func scanMixedDelay(str string) (bool, time.Time, error) {
|
||||||
default:
|
default:
|
||||||
return true, now, fmt.Errorf("La durata ha una unità che non conosco, usa una di queste: s (secondi) m (minuti) h (ore) d (giorni)")
|
return true, now, fmt.Errorf("La durata ha una unità che non conosco, usa una di queste: s (secondi) m (minuti) h (ore) d (giorni)")
|
||||||
}
|
}
|
||||||
|
return true, now.Add(dur), nil
|
||||||
|
}
|
||||||
|
/* TO FIX
|
||||||
now = now.Add(dur)
|
now = now.Add(dur)
|
||||||
remaining = remaining[scanned:]
|
remaining = remaining[scanned:]
|
||||||
}
|
}
|
||||||
return true, now, nil
|
return true, now, nil
|
||||||
|
*/
|
||||||
}
|
}
|
||||||
|
|
||||||
func parseDuration(date string) (time.Time, error) {
|
func parseDuration(date string) (time.Time, error) {
|
||||||
|
|
Reference in a new issue