mirror of
https://github.com/oxen-io/session-android.git
synced 2024-12-24 00:37:47 +00:00
Merge pull request #445 from veeti/null
Fix crash when no SMS package is set
This commit is contained in:
commit
ce4b8701fb
@ -188,7 +188,7 @@ public class Util {
|
||||
|
||||
public static boolean isDefaultSmsProvider(Context context){
|
||||
return (Build.VERSION.SDK_INT < Build.VERSION_CODES.KITKAT) ||
|
||||
(Telephony.Sms.getDefaultSmsPackage(context).equals(context.getPackageName()));
|
||||
(context.getPackageName().equals(Telephony.Sms.getDefaultSmsPackage(context)));
|
||||
}
|
||||
|
||||
// public static Bitmap loadScaledBitmap(InputStream src, int targetWidth, int targetHeight) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user