mirror of
https://github.com/KDE/kdeconnect-android
synced 2025-08-22 18:07:55 +00:00
Ignore case when checking manufacturer for Samsung mode
This commit is contained in:
parent
6a6b41db49
commit
86258a51a3
@ -113,7 +113,7 @@ public class SMSHelper {
|
|||||||
// However, according to https://stackoverflow.com/a/13640868/3723163, we can work around it this way.
|
// However, according to https://stackoverflow.com/a/13640868/3723163, we can work around it this way.
|
||||||
// By my understanding, "simple=true" means we can't support multi-target messages.
|
// By my understanding, "simple=true" means we can't support multi-target messages.
|
||||||
// Go complain to Samsung about their annoying OS changes!
|
// Go complain to Samsung about their annoying OS changes!
|
||||||
if ("Samsung".equals(Build.MANUFACTURER)){
|
if ("Samsung".equalsIgnoreCase(Build.MANUFACTURER)) {
|
||||||
Log.i("SMSHelper", "Samsung compatibility mode enabled. This may cause some features to not work properly.");
|
Log.i("SMSHelper", "Samsung compatibility mode enabled. This may cause some features to not work properly.");
|
||||||
return Uri.parse("content://mms-sms/conversations?simple=true");
|
return Uri.parse("content://mms-sms/conversations?simple=true");
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user