| 1191 id = xmlnode_get_attrib(msg, "id"); |
1191 id = xmlnode_get_attrib(msg, "id"); |
| 1192 |
1192 |
| 1193 if (id && strcmp(id, "1")) { |
1193 if (id && strcmp(id, "1")) { |
| 1194 PurpleConversation *conv |
1194 PurpleConversation *conv |
| 1195 = purple_find_conversation_with_account(PURPLE_CONV_TYPE_ANY, |
1195 = purple_find_conversation_with_account(PURPLE_CONV_TYPE_ANY, |
| 1196 who, gc->account); |
1196 who, purple_connection_get_account(gc)); |
| 1197 if (conv != NULL) { |
1197 if (conv != NULL) { |
| 1198 const char *error; |
1198 const char *error; |
| 1199 if (!strcmp(id, "407")) |
1199 if (!strcmp(id, "407")) |
| 1200 error = _("Mobile message was not sent because it was too long."); |
1200 error = _("Mobile message was not sent because it was too long."); |
| 1201 else |
1201 else |