Add mixed durations in reminder
This commit is contained in:
parent
0279e6bd35
commit
3f1f822b8c
1 changed files with 3 additions and 6 deletions
|
@ -254,15 +254,12 @@ 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:]
|
nextIndex := strings.IndexRune(remaining, sep)
|
||||||
|
remaining = remaining[nextIndex+1:]
|
||||||
}
|
}
|
||||||
|
fmt.Printf("tot: %s", now.Sub(time.Now()))
|
||||||
return true, now, nil
|
return true, now, nil
|
||||||
*/
|
|
||||||
return false, now, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func parseDuration(date string, loc *time.Location) (time.Time, error) {
|
func parseDuration(date string, loc *time.Location) (time.Time, error) {
|
||||||
|
|
Loading…
Reference in a new issue