mirror of
https://github.com/openvk/openvk
synced 2024-12-22 08:31:18 +03:00
fix(audios): fix invalid avatar at group add msg
This commit is contained in:
parent
cf43a52713
commit
e329d3dcd4
1 changed files with 2 additions and 2 deletions
|
@ -1580,7 +1580,7 @@ function __showAudioAddDialog(id, current_tab = 'club') {
|
|||
u('.entity_vertical_list').append(`<div id='gif_loader'></div>`)
|
||||
|
||||
try {
|
||||
window.openvk.writeableClubs = await window.OVKAPI.call('groups.get', {'filter': 'admin', 'count': 100})
|
||||
window.openvk.writeableClubs = await window.OVKAPI.call('groups.get', {'filter': 'admin', 'count': 100, 'fields': 'photo_50'})
|
||||
} catch (e) {
|
||||
u("#_content").html(tr("no_access_clubs"))
|
||||
|
||||
|
@ -1595,7 +1595,7 @@ function __showAudioAddDialog(id, current_tab = 'club') {
|
|||
<label class='entity_vertical_list_item with_third_column' data-id='${el.id}'>
|
||||
<div class='first_column'>
|
||||
<a href='/club${el.id}' class='avatar'>
|
||||
<img src='${el.avatar}' alt='avatar'>
|
||||
<img src='${el.photo_50}' alt='avatar'>
|
||||
</a>
|
||||
|
||||
<div class='info'>
|
||||
|
|
Loading…
Reference in a new issue