mirror of
https://github.com/samsonjs/immich.git
synced 2026-03-25 09:15:56 +00:00
fix: don't get OCR data in shared link (#24152)
This commit is contained in:
parent
939d2c8b27
commit
66ae07ee39
1 changed files with 3 additions and 1 deletions
|
|
@ -399,7 +399,9 @@
|
|||
$effect(() => {
|
||||
handlePromiseError(handleGetAllAlbums());
|
||||
ocrManager.clear();
|
||||
handlePromiseError(ocrManager.getAssetOcr(asset.id));
|
||||
if (!sharedLink) {
|
||||
handlePromiseError(ocrManager.getAssetOcr(asset.id));
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue