Skip to content
This repository has been archived by the owner on Apr 27, 2021. It is now read-only.

Commit

Permalink
save sms to inbox if oke
Browse files Browse the repository at this point in the history
  • Loading branch information
arminc committed Oct 6, 2011
1 parent 7272c82 commit 4b22eb6
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -115,10 +115,7 @@ private void sendSaldoRefreshBroadcast()
private void saveSmsToPhone(String to, String sms) private void saveSmsToPhone(String to, String sms)
{ {
SMSHelper smsHelper = new SMSHelper(); SMSHelper smsHelper = new SMSHelper();
if (properties.getBoolean("SaveSMSKey", false)) smsHelper.addSMS(getContentResolver(), sms, to);
{
smsHelper.addSMS(getContentResolver(), sms, to);
}
} }


private void notifyUserAboutFailure(String to, String sms, String errorMessage) private void notifyUserAboutFailure(String to, String sms, String errorMessage)
Expand Down

0 comments on commit 4b22eb6

Please sign in to comment.