From cb111a3ebd51069e84f0be96281fa0772ccc7475 Mon Sep 17 00:00:00 2001 From: csisoap <33269526+csisoap@users.noreply.github.com> Date: Tue, 28 Sep 2021 16:20:04 +0700 Subject: [PATCH] [UnogsBridge] Better feed title for Country context (#2279) --- bridges/UnogsBridge.php | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/bridges/UnogsBridge.php b/bridges/UnogsBridge.php index 1b89e6e6..04e0d5bc 100644 --- a/bridges/UnogsBridge.php +++ b/bridges/UnogsBridge.php @@ -74,7 +74,7 @@ class UnogsBridge extends BridgeAbstract { if($this->queriedContext == 'Global') { $feedName .= 'Netflix Global - '; } elseif($this->queriedContext == 'Country') { - $feedName .= 'Netflix Country Code: ' . $this->getInput('country_code') . ' - '; + $feedName .= 'Netflix ' . $this->getParametersKey('country_code') . ' - '; } if($this->getInput('feed') == 'expiring') { $feedName .= 'Expiring title'; @@ -86,6 +86,20 @@ class UnogsBridge extends BridgeAbstract { return $feedName; } + private function getParametersKey($input = '') { + $params = $this->getParameters(); + $tab = 'Country'; + if (!isset($params[$tab][$input])) { + return ''; + } + + return array_search( + $this->getInput($input), + $params[$tab][$input]['values'] + ); + + } + private function getJSON($url) { $header = array( 'Referer: https://unogs.com/',