https://bugs.kde.org/show_bug.cgi?id=488558

--- Comment #3 from Antonio Rojas <aro...@archlinux.org> ---
QJsonArray is now interpreted as a Sequence
https://code.qt.io/cgit/qt/qtdeclarative.git/commit?h=6.8&id=8dbcea319a20b0bc905d2988dc9f35394f73c2dc

Explicitly casting to Array fixes the issue, but there are a lot if instances
to fix:

--- a/faces/facepackages/linechart/contents/ui/LineChart.qml
+++ b/faces/facepackages/linechart/contents/ui/LineChart.qml
@@ -50,7 +50,7 @@ Charts.LineChart {

     Sensors.SensorDataModel {
         id: sensorsModel
-        sensors: chart.controller.highPrioritySensorIds
+        sensors: Array.from(chart.controller.highPrioritySensorIds)
         updateRateLimit: chart.controller.updateRateLimit
         sensorLabels: chart.controller.sensorLabels

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to