PLT-5238: Show error on execute invalid slash command. (#5057)

Этот коммит содержится в:
George Goldberg
2017-01-13 13:42:20 +00:00
коммит произвёл enahum
родитель b6cba7a07b
Коммит 0196137dec

Просмотреть файл

@@ -48,7 +48,14 @@ export function executeCommand(message, args, success, error) {
msg = '/shortcuts';
}
}
Client.executeCommand(msg, args, success, error);
Client.executeCommand(msg, args, success,
(err) => {
AsyncClient.dispatchError(err, 'executeCommand');
if (error) {
error(err);
}
});
}
export function setChannelAsRead(channelIdParam) {