https://bugs.kde.org/show_bug.cgi?id=514470
[email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #2 from [email protected] --- I'm experiencing the same issue on openSUSE Tumbleweed Slowroll with KDE Connect 25.12.0. Lenovo P16s Symptoms: * After wake from sleep, devices are not rediscovered automatically * Discovery is broken in both directions (laptop can't find phone, phone can't find laptop) * Manual refresh (kdeconnect-cli --refresh) does not help * However, a simple ICMP ping to the phone's IP address immediately restores the connection Workaround: Created a system sleep hook that pings the paired device on resume: [/usr/lib/systemd/system-sleep/kdeconnect-wake.sh] (permissions!) #!/bin/bash if [ "$1" = "post" ]; then sleep 3 sudo -u $USER ping -c 1 <PHONE_IP> fi This suggests the issue may be related to how the UDP broadcast discovery is (not) reinitiated after resume, rather than general network connectivity. -- You are receiving this mail because: You are watching all bug changes.
