Stop using ID field from telegram metadata in widget

This commit is contained in:
Tulir Asokan
2020-09-06 17:10:07 +03:00
parent 522e45a4ae
commit 4ce90892f0
3 changed files with 29 additions and 16 deletions

View File

@ -143,7 +143,7 @@ const Pack = ({ pack }) => html`
<h1>${pack.title}</h1>
<div class="sticker-list">
${pack.stickers.map(sticker => html`
<${Sticker} key=${sticker["net.maunium.telegram.sticker"].id} content=${sticker}/>
<${Sticker} key=${sticker.id} content=${sticker}/>
`)}
</div>
</section>