reactions: Fix minor formatting in log message.

Changes -> "Unknown user_id 8888in reaction for message 1001"
to ------> "Unknown user_id 8888 in reaction for message 1001".
This commit is contained in:
Rohitt Vashishtha 2018-07-10 12:01:15 +05:30 committed by showell
parent 910a2ec448
commit 43988c4c8d
1 changed files with 1 additions and 1 deletions

View File

@ -394,7 +394,7 @@ exports.get_message_reactions = function (message) {
reaction.local_id = exports.get_local_reaction_id(reaction);
if (!people.is_known_user_id(user_id)) {
blueslip.warn('Unknown user_id ' + user_id +
'in reaction for message ' + message.id);
' in reaction for message ' + message.id);
return;
}
reaction.user_ids = [];