fixed sending offline pgp messages
This commit is contained in:
parent
58953e6193
commit
5cb11396f6
|
@ -240,7 +240,7 @@
|
|||
<string name="missing_presence_updates">Missing presence updates from contact</string>
|
||||
<string name="request_presence_updates">Please request presence updates from your contact first.\n\n<small>This will be used to determine what client(s) your contact is using.</small></string>
|
||||
<string name="request_now">Request now</string>
|
||||
<string name="unable_to_decrypt_otr_message">Unable to decrypt OTR message</string>
|
||||
<string name="unable_to_decrypt_otr_message"><i>Unable to decrypt OTR message</i></string>
|
||||
<string name="delete_fingerprint">Delete Fingerprint</string>
|
||||
<string name="sure_delete_fingerprint">Are you sure you would like to delete this fingerprint?</string>
|
||||
<string name="ignore">Ignore</string>
|
||||
|
|
|
@ -151,6 +151,8 @@ public class Message extends AbstractEntity {
|
|||
public String getReadableBody(Context context) {
|
||||
if ((encryption == ENCRYPTION_PGP) && (type == TYPE_TEXT)) {
|
||||
return context.getText(R.string.encrypted_message_received).toString();
|
||||
} else if (encryption == ENCRYPTION_OTR && type == TYPE_TEXT && status == STATUS_RECEPTION_FAILED) {
|
||||
return context.getText(R.string.unable_to_decrypt_otr_message).toString();
|
||||
} else if ((encryption == ENCRYPTION_OTR) && (type == TYPE_IMAGE)) {
|
||||
return context.getText(R.string.encrypted_image_received).toString();
|
||||
} else if (encryption == ENCRYPTION_DECRYPTION_FAILED) {
|
||||
|
|
|
@ -87,7 +87,8 @@ public class MessageGenerator {
|
|||
packet.addChild("x", "jabber:x:encrypted").setContent(
|
||||
message.getEncryptedBody());
|
||||
} else if (message.getEncryption() == Message.ENCRYPTION_PGP) {
|
||||
packet.setBody(message.getBody());
|
||||
packet.addChild("x", "jabber:x:encrypted").setContent(
|
||||
message.getBody());
|
||||
}
|
||||
return packet;
|
||||
}
|
||||
|
|
|
@ -62,15 +62,17 @@ public class ConversationAdapter extends ArrayAdapter<Conversation> {
|
|||
|
||||
if (latestMessage.getType() == Message.TYPE_TEXT
|
||||
|| latestMessage.getType() == Message.TYPE_PRIVATE) {
|
||||
if ((latestMessage.getEncryption() != Message.ENCRYPTION_PGP)
|
||||
if (latestMessage.getEncryption() == Message.ENCRYPTION_OTR
|
||||
&& latestMessage.getStatus() == Message.STATUS_RECEPTION_FAILED) {
|
||||
convLastMsg.setText(R.string.unable_to_decrypt_otr_message);
|
||||
} else if ((latestMessage.getEncryption() != Message.ENCRYPTION_PGP)
|
||||
&& (latestMessage.getEncryption() != Message.ENCRYPTION_DECRYPTION_FAILED)) {
|
||||
String body = Config.PARSE_EMOTICONS ? UIHelper
|
||||
.transformAsciiEmoticons(latestMessage.getBody())
|
||||
: latestMessage.getBody();
|
||||
convLastMsg.setText(body);
|
||||
} else {
|
||||
convLastMsg.setText(activity
|
||||
.getText(R.string.encrypted_message_received));
|
||||
convLastMsg.setText(R.string.encrypted_message_received);
|
||||
}
|
||||
convLastMsg.setVisibility(View.VISIBLE);
|
||||
imagePreview.setVisibility(View.GONE);
|
||||
|
@ -83,11 +85,9 @@ public class ConversationAdapter extends ArrayAdapter<Conversation> {
|
|||
convLastMsg.setVisibility(View.VISIBLE);
|
||||
imagePreview.setVisibility(View.GONE);
|
||||
if (latestMessage.getStatus() == Message.STATUS_RECEIVED_OFFER) {
|
||||
convLastMsg.setText(activity
|
||||
.getText(R.string.image_offered_for_download));
|
||||
convLastMsg.setText(R.string.image_offered_for_download);
|
||||
} else if (latestMessage.getStatus() == Message.STATUS_RECEIVING) {
|
||||
convLastMsg.setText(activity
|
||||
.getText(R.string.receiving_image));
|
||||
convLastMsg.setText(R.string.receiving_image);
|
||||
} else {
|
||||
convLastMsg.setText("");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue