Skip to content

Commit

Permalink
SHIBUI-1983
Browse files Browse the repository at this point in the history
fixing issues with long type custom entity values
  • Loading branch information
chasegawa committed Jun 30, 2021
1 parent 2b10309 commit 3930cbf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -198,11 +198,11 @@ public static Attribute getAttributeFromObjectAndRelyingPartyOverrideProperty(Ob
}
return null;
case INTEGER:
case LONG:
return ATTRIBUTE_UTILITY.createAttributeWithIntegerValue(overrideProperty.getAttributeName(),
overrideProperty.getAttributeFriendlyName(),
Integer.valueOf((String) o));
case STRING:
case LONG:
case DOUBLE:
case DURATION:
case SPRING_BEAN_ID:
Expand Down

0 comments on commit 3930cbf

Please sign in to comment.