From e34c3406d110f3e91d493ca9d01742c732150d56 Mon Sep 17 00:00:00 2001 From: TheBeastLT Date: Mon, 1 Feb 2021 01:05:43 +0100 Subject: [PATCH] [addon] fixing missing title from cached results --- addon/moch/moch.js | 1 + 1 file changed, 1 insertion(+) diff --git a/addon/moch/moch.js b/addon/moch/moch.js index 88089e2..a8ca9d5 100644 --- a/addon/moch/moch.js +++ b/addon/moch/moch.js @@ -124,6 +124,7 @@ function populateCachedLinks(streams, mochResult) { if (cachedEntry && cachedEntry.cached) { return { name: `[${mochResult.moch.shortName}+] ${stream.name}`, + title: stream.title, url: `${RESOLVER_HOST}/${mochResult.moch.key}/${cachedEntry.url}` }; }