Skip to content

Commit 23d566b

Browse files
authored
Update CurrencyConverterApi.php
1 parent 9025307 commit 23d566b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/code/Magento/Directory/Model/Currency/Import/CurrencyConverterApi.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ private function convertBatch($data, $currencyFrom, $currenciesTo)
103103
$data[$currencyFrom][$to] = null;
104104
} else {
105105
if (isset($response['error']) && $response['error']) {
106-
$this->_messages[] = __($response['error']);
106+
$this->_messages[] = $response['error'];
107107
$data[$currencyFrom][$to] = null;
108108
} else {
109109
$data[$currencyFrom][$to] = $this->_numberFormat(

0 commit comments

Comments
 (0)