\r
#### fixes\r
\r
+- Fixed null pointer in LdapUserSerivce if account has a null email address (issue 110)\r
+\r
+#### changes\r
+\r
+- Updated Polish translation\r
+\r
+**1.0.0** *released 2012-07-14*\r
+\r
+#### fixes\r
+\r
- Fixed bug in Lucene search where old/stale blobs were never properly deleted during incremental updates. This resulted in duplicate blob entries in the index.\r
- Fixed intermittent bug in identifying line numbers in Lucene search (issue 105)\r
- Adjust repository identification algorithm to handle the scenario where a repository name collides with a group/folder name (e.g. foo.git and foo/bar.git) (issue 104)\r
\r
user.displayName = displayName;\r
} else {\r
- user.displayName = userEntry.getAttribute(displayName).getValue();\r
+ Attribute attribute = userEntry.getAttribute(displayName);\r
+ if (attribute != null && attribute.hasValue()) {\r
+ user.displayName = attribute.getValue();\r
+ }\r
}\r
}\r
\r
\r
user.emailAddress = email;\r
} else {\r
- user.emailAddress = userEntry.getAttribute(email).getValue();\r
+ Attribute attribute = userEntry.getAttribute(email);\r
+ if (attribute != null && attribute.hasValue()) {\r
+ user.emailAddress = attribute.getValue();\r
+ }\r
}\r
}\r
}\r