Simplify DateTimeType handling for Feed

Signed-off-by: Jacob Laursen <jacob-github@vindvejr.dk>
This commit is contained in:
Jacob Laursen 2024-12-10 21:53:11 +01:00 committed by lsiepel
parent f61cc6dec7
commit baf7ec6c2a

View File

@ -21,8 +21,6 @@ import java.math.BigDecimal;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLConnection;
import java.time.ZoneId;
import java.time.ZonedDateTime;
import java.util.Date;
import java.util.List;
import java.util.concurrent.ScheduledFuture;
@ -184,8 +182,7 @@ public class FeedHandler extends BaseThingHandler {
return;
} else {
Date date = latestEntry.getPublishedDate();
ZonedDateTime zdt = ZonedDateTime.ofInstant(date.toInstant(), ZoneId.systemDefault());
state = new DateTimeType(zdt);
state = new DateTimeType(date.toInstant());
}
break;
case CHANNEL_AUTHOR: