Merge "Prevent null argument from crashing ClockEventController" into tm-qpr-dev

This commit is contained in:
Hawkwood Glazier
2023-03-20 15:22:36 +00:00
committed by Android (Google) Code Review

View File

@@ -259,7 +259,7 @@ constructor(
largeTimeListener?.update(shouldTimeListenerRun)
}
override fun onTimeFormatChanged(timeFormat: String) {
override fun onTimeFormatChanged(timeFormat: String?) {
clock?.events?.onTimeFormatChanged(DateFormat.is24HourFormat(context))
}