diff --git a/bridges/PepperBridgeAbstract.php b/bridges/PepperBridgeAbstract.php
index 8e8a2e8d..6cb0f302 100644
--- a/bridges/PepperBridgeAbstract.php
+++ b/bridges/PepperBridgeAbstract.php
@@ -117,8 +117,7 @@ class PepperBridgeAbstract extends BridgeAbstract
. $this->getSource($deal)
. $deal->find('div[class*=' . $selectorDescription . ']', 0)->innertext
. '
'
- . $deal->find('div[class*=' . $selectorHot . ']', 0)
- ->find('span', 0)->outertext
+ . $this->getTemperature($deal)
. ' | ';
// Check if a clock icon is displayed on the deal
@@ -368,6 +367,16 @@ HEREDOC;
}
}
+ /**
+ * Get the temperature from a Deal if it exists
+ * @return string String of the deal temperature
+ */
+ private function getTemperature($deal)
+ {
+ $data = Json::decode($deal->find('div[class=js-vue2]', 0)->getAttribute('data-vue2'));
+ return $data['props']['thread']['temperature'] . '°';
+ }
+
/**
* Get the source of a Deal if it exists
* @return string String of the deal source