Этот коммит содержится в:
Alan Mooiman
2016-03-24 22:42:03 -04:00
родитель 8f5b90fe78
Коммит ad902f601f
5 изменённых файлов: 201 добавлений и 7 удалений

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

@@ -100,13 +100,16 @@ export default class AtMentionProvider {
}
}
// add dummy users to represent the @all and @channel special mentions
if ('all'.startsWith(usernamePrefix)) {
filtered.push({username: 'all'});
}
//Don't imply that @all and @channel can be direct messaged
if (!pretext.startsWith('/msg')) {
// add dummy users to represent the @all and @channel special mentions
if ('all'.startsWith(usernamePrefix)) {
filtered.push({username: 'all'});
}
if ('channel'.startsWith(usernamePrefix)) {
filtered.push({username: 'channel'});
if ('channel'.startsWith(usernamePrefix)) {
filtered.push({username: 'channel'});
}
}
filtered = filtered.sort((a, b) => a.username.localeCompare(b.username));