removed warning

This commit is contained in:
uli 2022-05-31 12:00:38 +02:00
parent 49cde2b3c2
commit f56be08106
1 changed files with 5 additions and 5 deletions

View File

@ -720,11 +720,11 @@ func (i *Device) SetTime(t time.Time) error {
}
if err := i.checkStatus(i.localTimeChar, LocalTimeChar); err != nil {
// this characteristic might not be there in older versions of infinitime
// so we fail silently in this case.
_, notAvailable := err.(ErrCharNotAvail)
if notAvailable {
log.Warn().Msg("No Local Time Characteristic detected. Old Version of Infinitime (pre 1.10.0)?")
// If the characteristic is unavailable,
// fail silently, as many people may be on
// older InfiniTime versions. A warning
// may be added later.
if _, ok := err.(ErrCharNotAvail); ok {
return nil
} else {
return err