https://bugs.kde.org/show_bug.cgi?id=500825
--- Comment #7 from Jakob Petsovits <jpe...@petsovits.com> --- Let's link to the commit in Invent: https://invent.kde.org/network/kdeconnect-kde/-/commit/d04a3336bc2855880ac9a9591f3ec907c6f8dc36 There is a straightforward bug in this commit, in this change: > - obj.insert(QLatin1String("id"), m_id); > + obj.insert(QLatin1String("id"), QDateTime::currentMSecsSinceEpoch()); m_id was a QString though, so this line should likely adopt the QString::number() conversion that the m_id initializer was using before: > obj.insert(QLatin1String("id"), > QString::number(QDateTime::currentMSecsSinceEpoch())); However, fixing the type for the "id" property does not seem to make it work. Still crashing. I'm not sure what else is going wrong here. -- You are receiving this mail because: You are watching all bug changes.