mirror of
https://github.com/openvk/openvk
synced 2024-11-11 01:19:53 +03:00
Set context timeout to 20s and maybe fix broadcas
t list
This commit is contained in:
parent
eb64376c3a
commit
f65d790654
2 changed files with 3 additions and 2 deletions
|
@ -1279,7 +1279,7 @@ class User extends RowModel
|
|||
foreach($entityIds as $id) {
|
||||
$entit = $id > 0 ? (new Users)->get($id) : (new Clubs)->get(abs($id));
|
||||
|
||||
if($id > 0 && $entit->isDeleted()) return;
|
||||
if($id > 0 && $entit->isDeleted()) continue;
|
||||
$returnArr[] = $entit;
|
||||
}
|
||||
|
||||
|
|
|
@ -141,7 +141,8 @@ class bigPlayer {
|
|||
}
|
||||
]
|
||||
},
|
||||
body: formdata
|
||||
body: formdata,
|
||||
timeout: 20000,
|
||||
})
|
||||
|
||||
u(this.nodes["playButtons"].querySelector(".playButton")).on("click", (e) => {
|
||||
|
|
Loading…
Reference in a new issue