Fix typos in logging for remote delete.

This commit is contained in:
Artem Varaksa 2020-06-01 19:48:03 +03:00 committed by Alan Evans
parent cd228c439e
commit 07d19f38e3
2 changed files with 2 additions and 2 deletions

View file

@ -158,7 +158,7 @@ public class RemoteDeleteSendJob extends BaseJob {
@Override
public void onFailure() {
Log.w(TAG, "Failed to send the reaction to all recipients! (" + (initialRecipientCount - recipients.size() + "/" + initialRecipientCount + ")") );
Log.w(TAG, "Failed to send remote delete to all recipients! (" + (initialRecipientCount - recipients.size() + "/" + initialRecipientCount + ")") );
}
private @NonNull List<Recipient> deliver(@NonNull Recipient conversationRecipient, @NonNull List<Recipient> destinations, long targetSentTimestamp)

View file

@ -332,7 +332,7 @@ public class MessageSender {
ApplicationDependencies.getJobManager().add(RemoteDeleteSendJob.create(context, messageId, isMms));
onMessageSent();
} catch (NoSuchMessageException e) {
Log.w(TAG, "[sendNewReaction] Could not find message! Ignoring.");
Log.w(TAG, "[sendRemoteDelete] Could not find message! Ignoring.");
}
}