mirror of
https://github.com/openvk/openvk
synced 2025-07-07 08:19:49 +03:00
picker album fix
This commit is contained in:
parent
4ec6ceca8e
commit
6f31da02c8
1 changed files with 1 additions and 1 deletions
|
@ -1434,7 +1434,7 @@ u(document).on("click", "#__photoAttachment", async (e) => {
|
||||||
window.openvk.photoalbums = await window.OVKAPI.call('photos.getAlbums', {'owner_id': club != 0 ? Math.abs(club) * -1 : window.openvk.current_id})
|
window.openvk.photoalbums = await window.OVKAPI.call('photos.getAlbums', {'owner_id': club != 0 ? Math.abs(club) * -1 : window.openvk.current_id})
|
||||||
}
|
}
|
||||||
window.openvk.photoalbums.items.forEach(item => {
|
window.openvk.photoalbums.items.forEach(item => {
|
||||||
u('.ovk-diag-body #albumSelect').append(`<option value="${item.vid}">${ovk_proc_strtr(escapeHtml(item.title), 20)}</option>`)
|
u('.ovk-diag-body #albumSelect').append(`<option value="${item.id}">${ovk_proc_strtr(escapeHtml(item.title), 20)}</option>`)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue