mirror of
https://github.com/MarshalX/telegram-crawler.git
synced 2024-11-24 08:16:34 +01:00
Update content of files
This commit is contained in:
parent
7cada9e57a
commit
ca385c2364
1 changed files with 6 additions and 2 deletions
|
@ -1048,7 +1048,9 @@ var Assets = {
|
|||
username: username,
|
||||
auction: true
|
||||
}, function(result) {
|
||||
if (result.confirm_message) {
|
||||
if (result.error) {
|
||||
return showAlert(result.error);
|
||||
} else if (result.confirm_message) {
|
||||
showConfirm(result.confirm_message, function() {
|
||||
doPutToAuction();
|
||||
}, result.confirm_button);
|
||||
|
@ -1148,7 +1150,9 @@ var Assets = {
|
|||
username: username,
|
||||
auction: false
|
||||
}, function(result) {
|
||||
if (result.confirm_message) {
|
||||
if (result.error) {
|
||||
return showAlert(result.error);
|
||||
} else if (result.confirm_message) {
|
||||
showConfirm(result.confirm_message, function() {
|
||||
doSellUsername();
|
||||
}, result.confirm_button);
|
||||
|
|
Loading…
Reference in a new issue