Skip to content

Commit

Permalink
version 0.0.14
Browse files Browse the repository at this point in the history
  • Loading branch information
temaivanoff committed May 6, 2019
1 parent 591a050 commit e27dd08
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +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()} }])
// telegram.sendText(from.id, `Received: ${text}`);
} else {
telegram_user_not_found(from.id)
Expand All @@ -62,7 +63,7 @@ function telegram_debug(text) {
}

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

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

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

0 comments on commit e27dd08

Please sign in to comment.