mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-01 20:04:09 +03:00
urbit/talk@c83aedc Don't prepend extra ~ to audi
Selecting previous messages' audiences would result in ~~him/foo messages, which would promptly be rejected by the server.
This commit is contained in:
parent
42e1d2e1cb
commit
05ceafbb2b
@ -338,7 +338,7 @@ module.exports = recl({
|
|||||||
_handleAudi: function(e) {
|
_handleAudi: function(e) {
|
||||||
var audi;
|
var audi;
|
||||||
audi = _.map($(e.target).closest('.path').find('div'), function(div) {
|
audi = _.map($(e.target).closest('.path').find('div'), function(div) {
|
||||||
return "~" + $(div).text();
|
return $(div).text();
|
||||||
});
|
});
|
||||||
return this.props._handleAudi(audi);
|
return this.props._handleAudi(audi);
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user