feat: wordpress no avatar url

This commit is contained in:
Nevo David 2025-07-30 15:03:37 +07:00
parent 39a580888e
commit c6e286bdaa
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ export class WordpressProvider
})
).json();
const biggestImage = Object.entries(avatar_urls).reduce(
const biggestImage = Object.entries(avatar_urls || {}).reduce(
(all, current) => {
if (all > Number(current[0])) {
return all;