mirror of
https://codeberg.org/monocles/monocles_chat.git
synced 2025-01-15 22:22:22 +01:00
If user is running on SailfishOS, disable Call Integration.
(cherry picked from commit 177ff29f412ee75929dfdaaffa758d6c0457400b)
This commit is contained in:
parent
3439afba17
commit
7a0f29fe54
1 changed files with 4 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue