diff --git a/app.min.js b/app.min.js index 974679f2..bd0ef5e6 100644 --- a/app.min.js +++ b/app.min.js @@ -26683,9 +26683,25 @@ function last$1() { var active = Storage.get('activity', 'false'); var start_from = Storage.field("start_page"); + var uri; + + try { + uri = new URL(window.location); + } catch (e) {} if (window.start_deep_link) { push$1(window.start_deep_link); + } else if (uri && uri.searchParams.get('card')) { + push$1({ + id: uri.searchParams.get('id'), + component: "full", + method: uri.searchParams.get('media') || 'movie', + source: uri.searchParams.get('source') || 'cub', + card: { + id: uri.searchParams.get('id'), + source: uri.searchParams.get('source') || 'cub' + } + }); } else if (active && start_from === "last") { if (active.page) active.page = 1; push$1(active);