[2.4.0.148] drivers with 'time' preferences can not be saved

Any driver that uses 'time' in the preferences will NO longer save with version 2.4.0.148
Can be duplicated with example (works if you comment out the type: "time" inputs):
@bobbyD @gopher.ny

metadata {
	definition (name: "Test time preferences", namespace: "bloodtick", author: "Hubitat") {
		capability "Actuator"
	}
}

preferences {
    input(name:"delayTime", type: "number", title: "Time Delay (secs)", range: "1...600", defaultValue: 2)
    input(name:"fromTime", type: "time", title: "From")
    input(name:"toTime", type: "time", title: "To")
}
2 Likes

Fixed.

3 Likes