mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-05-09 11:30:51 +00:00
small fix
This commit is contained in:
parent
e0ad949141
commit
e7b3458f34
1 changed files with 7 additions and 1 deletions
|
|
@ -249,7 +249,13 @@ const ContinueWatchingSection = React.forwardRef<ContinueWatchingRef>((props, re
|
||||||
|
|
||||||
|
|
||||||
if (finalContent) {
|
if (finalContent) {
|
||||||
const result = { metadata, basicContent: finalContent, addonContent, timestamp: now };
|
const result = {
|
||||||
|
metadata,
|
||||||
|
basicContent: finalContent,
|
||||||
|
addonContent: preferredAddonMeta,
|
||||||
|
timestamp: now
|
||||||
|
};
|
||||||
|
|
||||||
metadataCache.current[cacheKey] = result;
|
metadataCache.current[cacheKey] = result;
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue