Request - internal call and SMS blocklist

I’ve tried to find a workaround in order to be able to finish my call rejecting app. The idea was that if the hangup method doesn’t work, then I’ll use the deflect method to forward unwanted calls to voicemail.

So I did this:

QDBusMessage m = QDBusMessage::createMethodCall("org.nemomobile.voicecall",
                                                    "/calls/active",
                                                    "org.nemomobile.voicecall.VoiceCall",
                                                    "deflect");
m << "+48602951000";  // voicemail phone number here
QDBusMessage response = QDBusConnection::sessionBus().call(m);

Result? “Problem with network” (“Problem z siecią” in Polish) notification is shown and the incoming call keeps ringing and doesn’t get deflected / forwarded.

Apparently, Sailfish OS’ telephony isn’t compatibile with Polish T-Mobile network.