You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to this SCIM section, if the value of startIndex less than 1 SHALL be interpreted as 1.
So, I think we should use max(1, value) in this LOC, instead of max(0, value)
The text was updated successfully, but these errors were encountered:
According to this SCIM section, if the value of startIndex less than 1 SHALL be interpreted as 1.
So, I think we should use
max(1, value)
in this LOC, instead ofmax(0, value)
The text was updated successfully, but these errors were encountered: