mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-30 08:34:16 +01:00
Better Kindle fix: don't even post message if SMS not supported.
This commit is contained in:
parent
949b804f35
commit
aafcd5144a
1 changed files with 1 additions and 1 deletions
|
@ -95,7 +95,7 @@ public class SMSService extends Service {
|
||||||
|
|
||||||
public static void checkForInvites( Context context )
|
public static void checkForInvites( Context context )
|
||||||
{
|
{
|
||||||
if ( XWApp.SMSSUPPORTED ) {
|
if ( XWApp.SMSSUPPORTED && Utils.deviceSupportsSMS( context ) ) {
|
||||||
Intent intent = getIntentTo( context, CHECK_MSGDB );
|
Intent intent = getIntentTo( context, CHECK_MSGDB );
|
||||||
context.startService( intent );
|
context.startService( intent );
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue