Skip to content

Commit 277b3b9

Browse files
author
Robert Sösemann
authored
Fix apex-enterprise-patterns#138 (CurrencyIsoCode field not queried)
apex-enterprise-patterns#138
1 parent 0a9d4e8 commit 277b3b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fflib/src/classes/fflib_SObjectSelector.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public abstract with sharing class fflib_SObjectSelector
3737
private Boolean CURRENCY_ISO_CODE_ENABLED {
3838
get {
3939
if(CURRENCY_ISO_CODE_ENABLED == null){
40-
CURRENCY_ISO_CODE_ENABLED = describeWrapper.getFieldsMap().keySet().contains('CurrencyIsoCode');
40+
CURRENCY_ISO_CODE_ENABLED = describeWrapper.getFieldsMap().keySet().contains('currencyisocode');
4141
}
4242
return CURRENCY_ISO_CODE_ENABLED;
4343
}

0 commit comments

Comments
 (0)