mirror of
https://github.com/immich-app/immich.git
synced 2025-11-24 11:20:40 +09:00
fix(web+server): showing assets without thumbnail (#2652)
* fix(web+server): showing assets without thumbnail * missed change
This commit is contained in:
@@ -30,7 +30,10 @@
|
||||
|
||||
const getFavoriteCount = async () => {
|
||||
try {
|
||||
const { data: assets } = await api.assetApi.getAllAssets({ isFavorite: true });
|
||||
const { data: assets } = await api.assetApi.getAllAssets({
|
||||
isFavorite: true,
|
||||
withoutThumbs: true
|
||||
});
|
||||
|
||||
return {
|
||||
favorites: assets.length
|
||||
|
||||
Reference in New Issue
Block a user