Skip to content

Commit 87f57cd

Browse files
authored
Merge pull request apex-enterprise-patterns#145 from up2go-rsoesemann/master
Fix apex-enterprise-patterns#138 (CurrencyIsoCode field not queried)
2 parents 0a9d4e8 + 277b3b9 commit 87f57cd

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)