We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bdf9269 commit 5c78555Copy full SHA for 5c78555
app/code/Magento/ReleaseNotification/Ui/DataProvider/Modifier/Notifications.php
@@ -192,9 +192,9 @@ private function hideNotification(array $meta)
192
*/
193
private function getNotificationContent()
194
{
195
- $version = $this->getTargetVersion();
196
- $edition = $this->productMetadata->getEdition();
197
- $locale = $this->session->getUser()->getInterfaceLocale();
+ $version = strtolower($this->getTargetVersion());
+ $edition = strtolower($this->productMetadata->getEdition());
+ $locale = strtolower($this->session->getUser()->getInterfaceLocale());
198
199
$cacheKey = self::$cachePrefix . $version . "-" . $edition . "-" . $locale;
200
$modalContent = $this->cacheStorage->load($cacheKey);
0 commit comments