diff --git a/app/code/Magento/Store/Model/Store.php b/app/code/Magento/Store/Model/Store.php index 05c762cce5164..5bf76a698e642 100644 --- a/app/code/Magento/Store/Model/Store.php +++ b/app/code/Magento/Store/Model/Store.php @@ -904,6 +904,7 @@ public function setCurrentCurrencyCode($code) { $code = is_string($code) && '' !== $code ? strtoupper($code) : ''; if (in_array($code, $this->getAvailableCurrencyCodes())) { + $this->unsetData('current_currency'); $this->_getSession()->setCurrencyCode($code); $defaultCode = ($this->_storeManager->getStore() !== null)