refactor(file|folder): separate etag and blob_hash

This commit is contained in:
Edouard Vanbelle
2026-06-06 15:37:27 +02:00
parent 6aee68b34c
commit 0135930da9
20 changed files with 307 additions and 77 deletions
@@ -386,7 +386,8 @@ const sharedWithMeView = {
sort_date: grantedAtSecs(item.granted_at),
icon_class: f.icon_class,
icon_special_class: f.icon_special_class ?? '',
category: 'folder'
category: 'folder',
etag: ''
})
);
} else if (item.resource_type === 'file') {
@@ -406,7 +407,9 @@ const sharedWithMeView = {
sort_date: grantedAtSecs(item.granted_at),
icon_class: f.icon_class,
icon_special_class: f.icon_special_class ?? '',
category: f.category
category: f.category,
etag: '',
content_hash: ''
})
);
}