1
0
Fork 1

If user is running on SailfishOS, disable Call Integration.

(cherry picked from commit 177ff29f412ee75929dfdaaffa758d6c0457400b)
This commit is contained in:
Matthieu Volat 2024-11-02 10:23:46 +01:00 committed by Arne
parent 7e83910b29
commit 8c5ee1c52a

View file

@ -562,6 +562,10 @@ public class CallIntegration extends Connection {
if ("umidigi".equals(manufacturer) && Build.VERSION.SDK_INT <= Build.VERSION_CODES.S) {
return false;
}
// SailfishOS's AppSupport do not support Call Integration
if (Build.MODEL.endsWith("(AppSupport)")) {
return false;
}
return true;
}