From 7456e8f15a1996010fb4d49a3dc465bc77fbe26a Mon Sep 17 00:00:00 2001 From: Lachezar Lechev Date: Mon, 27 Oct 2025 15:21:45 +0200 Subject: [PATCH] chore: revert space added by formatter --- src/routes/Player/Player.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/Player/Player.js b/src/routes/Player/Player.js index f393a3bf5..78fda087a 100644 --- a/src/routes/Player/Player.js +++ b/src/routes/Player/Player.js @@ -566,7 +566,7 @@ const Player = ({ urlParams, queryParams }) => { const videoId = player.selected ? player.selected.streamRequest.path.id : null; const video = metaItem ? metaItem.videos.find(({ id }) => id === videoId) : null; - const videoInfo = video && video.season && video.episode ? ` (${video.season}x${video.episode})` : null; + const videoInfo = video && video.season && video.episode ? ` (${video.season}x${video.episode})`: null; const videoTitle = video ? `${video.title}${videoInfo}` : null; const metaTitle = metaItem ? metaItem.name : null; const imageUrl = metaItem ? metaItem.logo : null;