From e329d3dcd46a96f6b762b955fca68ef7c34ba5d3 Mon Sep 17 00:00:00 2001 From: mrilyew <99399973+mrilyew@users.noreply.github.com> Date: Sat, 7 Dec 2024 20:48:08 +0300 Subject: [PATCH] fix(audios): fix invalid avatar at group add msg --- Web/static/js/al_music.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Web/static/js/al_music.js b/Web/static/js/al_music.js index 94af455d..483aad21 100644 --- a/Web/static/js/al_music.js +++ b/Web/static/js/al_music.js @@ -1580,7 +1580,7 @@ function __showAudioAddDialog(id, current_tab = 'club') { u('.entity_vertical_list').append(`
`) 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') {