diff --git a/resources/qml/voip/ActiveCallBar.qml b/resources/qml/voip/ActiveCallBar.qml
index eb7fce764cca2f8137e9eb243e5a83ddf04d2802..3b5e24642e821d340befef508d5571dc2f7a8055 100644
--- a/resources/qml/voip/ActiveCallBar.qml
+++ b/resources/qml/voip/ActiveCallBar.qml
@@ -134,8 +134,14 @@ Rectangle {
                         callTimer.startTime: Math.floor((new Date()).getTime() / 1000)
                     }
 
+                    // HACK(Nico): Somehow this causes a crash when not using the custom parser for that property change...
+                    //PropertyChanges {
+                    //    stackLayout.currentIndex: CallManager.callType != Voip.VOICE ? 1 : 0
+                    //}
+
                     PropertyChanges {
-                        stackLayout.currentIndex: CallManager.callType != Voip.VOICE ? 1 : 0
+                        target: stackLayout
+                        currentIndex: CallManager.callType != Voip.VOICE ? 1 : 0 // qmllint disable Quick.property-changes-parsed
                     }
 
                 },