We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6770547 commit f4f2f00Copy full SHA for f4f2f00
components/oanda/actions/get-historical-prices/get-historical-prices.mjs
@@ -119,6 +119,9 @@ export default {
119
} catch (error) {
120
if (error?.message.includes("Maximum value for 'count' exceeded")) {
121
throw new ConfigurationError("Maximum results exceeded. Update the time range or granularity to return fewer results.");
122
+ } else {
123
+ console.error("Error retrieving historical prices:", error);
124
+ throw error;
125
}
126
127
},
0 commit comments