Skip to content

Commit

Permalink
Bug removed.
Browse files Browse the repository at this point in the history
  • Loading branch information
hanuor committed Feb 17, 2017
1 parent b43895f commit baee347
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -1079,3 +1079,6 @@
/bin/
/bin/
/bin/
/bin/
/bin/
/bin/
2 changes: 1 addition & 1 deletion src/core/SmtpCorelogic.java
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ protected PasswordAuthentication getPasswordAuthentication() {
ccrecepientAddress);
}
if (recepientPacket.get("BCcRecepients") != null) {

System.out.println("Wherever " );
message.setRecipients(Message.RecipientType.BCC,
bccrecepientAddress);
}
Expand Down
10 changes: 8 additions & 2 deletions src/main/AfterSignin.java
Original file line number Diff line number Diff line change
Expand Up @@ -183,8 +183,14 @@ protected Boolean doInBackground() throws Exception {
.get("subject")));
gs.setEmailCount(ControlPanelMethods.getCount(mmp
.get("message")));
gs.setSubText(mmp.get("subject").toString());
gs.setEmailText(mmp.get("message").toString());
StringBuilder strBuilderSub = new StringBuilder();
strBuilderSub.append(mmp.get("subject"));
strBuilderSub.append(" ");
StringBuilder strBuilderEmail = new StringBuilder();
strBuilderEmail.append(mmp.get("message"));
strBuilderEmail.append(" ");
gs.setSubText(strBuilderSub.toString());
gs.setEmailText(strBuilderEmail.toString());

return true;
}
Expand Down

0 comments on commit baee347

Please sign in to comment.