blob: 1a78d354a38e73924ece30f1ebc81a947d88e151 (
plain)
1
2
3
4
5
6
7
8
9
10
|
(function () {
plugins.libly.$U.around(
plugins.twittperator.Twitter,
'say',
function (next, [status, inReplyTo]) {
return next([status.toString().slice(0, 17), inReplyTo]);
}
);
})();
|