Skip to content

Commit 6e1b836

Browse files
committedJan 2, 2018
Allow empty string for switch_inline_query and switch_inline_query_current_chat.
1 parent d61262b commit 6e1b836

File tree

4 files changed

+11
-1
lines changed

4 files changed

+11
-1
lines changed
 

‎CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
1010
### Removed
1111
### Fixed
1212
- Entity relations and wrong types for payments.
13+
- Allow empty string for `switch_inline_query` and `switch_inline_query_current_chat` (InlineKeyboardButton).
1314
### Security
1415

1516
## [0.51.0] - 2017-12-05

‎src/Entities/InlineKeyboardButton.php

+7-1
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,18 @@ protected function validate()
6363

6464
$num_params = 0;
6565

66-
foreach (['url', 'callback_data', 'switch_inline_query', 'switch_inline_query_current_chat', 'pay'] as $param) {
66+
foreach (['url', 'callback_data', 'pay'] as $param) {
6767
if ($this->getProperty($param, '') !== '') {
6868
$num_params++;
6969
}
7070
}
7171

72+
foreach (['switch_inline_query', 'switch_inline_query_current_chat'] as $param) {
73+
if ($this->getProperty($param) !== null) {
74+
$num_params++;
75+
}
76+
}
77+
7278
if ($num_params !== 1) {
7379
throw new TelegramException('You must use only one of these fields: url, callback_data, switch_inline_query, switch_inline_query_current_chat, pay!');
7480
}

‎src/Entities/InlineQuery.php

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
namespace Longman\TelegramBot\Entities;
1212

1313
use Longman\TelegramBot\Entities\InlineQuery\InlineQueryResult;
14+
use Longman\TelegramBot\Request;
1415

1516
/**
1617
* Class InlineQuery

‎tests/unit/Entities/InlineKeyboardButtonTest.php

+2
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,9 @@ public function testInlineKeyboardButtonSuccess()
9191
new InlineKeyboardButton(['text' => 'message', 'url' => 'url_value']);
9292
new InlineKeyboardButton(['text' => 'message', 'callback_data' => 'callback_data_value']);
9393
new InlineKeyboardButton(['text' => 'message', 'switch_inline_query' => 'switch_inline_query_value']);
94+
new InlineKeyboardButton(['text' => 'message', 'switch_inline_query' => '']); // Allow empty string.
9495
new InlineKeyboardButton(['text' => 'message', 'switch_inline_query_current_chat' => 'switch_inline_query_current_chat_value']);
96+
new InlineKeyboardButton(['text' => 'message', 'switch_inline_query_current_chat' => '']); // Allow empty string.
9597
new InlineKeyboardButton(['text' => 'message', 'pay' => true]);
9698
}
9799

0 commit comments

Comments
 (0)