Shikiryu
Shikiryu
I got exactly the same error > RUNNING PLUGIN: \PHPCI\Plugin\PhpCodeSniffer > Exception: SQLSTATE[22001]: String data, right truncated: 1406 Data too long for column 'message' at row 1
Changing `phpci.build_error.message` from `varchar` to `text`did it. `ALTER TABLE`build_error`CHANGE`message` `message` TEXT CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL;`
Well, I see "x", "Invalid character" (\uD83D), "Escape character" (\uDE80) and "y", that's 4.
Well, I guess you're right : http://www.charbase.com/1f680-unicode-rocket but `\uD83D` and `\uDE80` are characters too by themselves. http://www.charbase.com/d83d-unicode-invalid-character for example. In firefox' console: ``` String.fromCharCode('\uD83D') " " String.fromCharCode('\uDE80') " " String.fromCharCode('\uD83D\uDE80')...
More than 4 years? Any news @killing ? Wasn't aware of this and, as much as I like Seafile, that makes me want to stop using it…
Yes : * https://core.telegram.org/bots/api#unpinchatmessage * https://core.telegram.org/bots/api#unpinallchatmessages
The documentation is misleading. `handle()` shouldn't have any parameters.
PHP 8 is available since v3.4.0 : https://packagist.org/packages/irazasyed/telegram-bot-sdk#v3.4.0 This should be closed now.
In a command, `triggerCommand` takes only 1 parameter, so it should be `$this->triggerCommand('start en');` for example.