Skip to content

Commit

Permalink
version 0.0.15
Browse files Browse the repository at this point in the history
temaivanoff committed May 6, 2019
1 parent e27dd08 commit 68c1ced
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
@@ -51,7 +51,7 @@ function telegram_message({ from, text }) {
if (user) {
plugin.debug(`msg -> id:${from.id}, text:${text}`);
plugin.setChannelsData([{ id: 'incoming_message', value: text, ext: { userid: from.id, update: Date.now()} }])
plugin.setChannelsData([{ id: 'incoming_message', value: text + " ", ext: { userid: from.id, update: Date.now()} }])
plugin.setChannelsData([{ id: 'incoming_message', value: '#' + text, ext: { userid: from.id, update: Date.now()} }])
// telegram.sendText(from.id, `Received: ${text}`);
} else {
telegram_user_not_found(from.id)
@@ -63,7 +63,7 @@ function telegram_debug(text) {
}

function start(options) {
plugin.debug("version: 0.0.14");
plugin.debug("version: 0.0.15");

plugin.setChannels([{ id: 'incoming_message', desc: 'incoming_message' }]);

2 changes: 1 addition & 1 deletion telegram.ih
Original file line number Diff line number Diff line change
@@ -4,5 +4,5 @@
"activation": false,
"resources": false,
"cross": true,
"version":"0.0.14"
"version":"0.0.15"
}

0 comments on commit 68c1ced

Please sign in to comment.