Uploaded image for project: 'Crowd Data Center'
  1. Crowd Data Center
  2. CWD-1795

Users created using the Integration Library have details set to the default value of "-"

    XMLWordPrintable

Details

    • Bug
    • Resolution: Fixed
    • Low
    • 2.0.4, 2.1
    • 2.0, 2.0.1, 2.0.2, 2.0.3
    • None
    • None

    Description

      The problematic line of code is in file ./atlassian-crowd/components/crowd-integration-api/src/main/java/com/atlassian/crowd/integration/service/cache/CachingUserManager.java line 110:

      else if (attribute.getValues() == null || attribute.getValues().length == 0 || attribute.getValues()[0] != null)
      

      It should be:

      else if (attribute.getValues() == null || attribute.getValues().length == 0 || attribute.getValues()[0] == null)
      

      Attachments

        Activity

          People

            pkuo Peggy
            rbattaglin Renan Battaglin
            Votes:
            1 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: