Update content of files

This commit is contained in:
GitHub Action 2023-12-23 18:38:33 +00:00
parent 83229dda59
commit 125fed4bf6
2 changed files with 3 additions and 7 deletions

View file

@ -74,7 +74,7 @@
<tr>
<td><strong>has_large_media</strong></td>
<td style="text-align: center;"><a href="/mtproto/TL-combinators#conditional-fields">flags</a>.13?<a href="/constructor/true">true</a></td>
<td> </td>
<td>Whether the size of the media in the preview can be changed.</td>
</tr>
<tr>
<td><strong>id</strong></td>

View file

@ -1048,9 +1048,7 @@ var Assets = {
username: username,
auction: true
}, function(result) {
if (result.error) {
return showAlert(result.error);
} else if (result.confirm_message) {
if (result.confirm_message) {
showConfirm(result.confirm_message, function() {
doPutToAuction();
}, result.confirm_button);
@ -1150,9 +1148,7 @@ var Assets = {
username: username,
auction: false
}, function(result) {
if (result.error) {
return showAlert(result.error);
} else if (result.confirm_message) {
if (result.confirm_message) {
showConfirm(result.confirm_message, function() {
doSellUsername();
}, result.confirm_button);