Skip to content

Commit eb98bbe

Browse files
committed
Clear captions and drafts from empty characters.
1 parent 6b3ae1d commit eb98bbe

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

td/telegram/MessageEntity.cpp

+6-2
Original file line numberDiff line numberDiff line change
@@ -4494,8 +4494,12 @@ Status fix_formatted_text(string &text, vector<MessageEntity> &entities, bool al
44944494
}
44954495
LOG_CHECK(check_utf8(text)) << text;
44964496

4497-
if (!allow_empty && is_empty_string(text)) {
4498-
return Status::Error(400, "Text must be non-empty");
4497+
if (is_empty_string(text)) {
4498+
if (!allow_empty) {
4499+
return Status::Error(400, "Text must be non-empty");
4500+
}
4501+
text.clear();
4502+
entities.clear();
44994503
}
45004504

45014505
constexpr size_t LENGTH_LIMIT = 35000; // server side limit

0 commit comments

Comments
 (0)