Skip to content

Commit 0b5cf18

Browse files
authored
Merge pull request #3700 from neddp/develop
Fix SCIM DateTime Filter Timezone Parsing
2 parents a45039b + 9b124d2 commit 0b5cf18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/src/main/java/org/cloudfoundry/identity/uaa/resources/jdbc/SimpleSearchQueryConverter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ private String getParamName(Map<String, Object> values, String paramPrefix) {
339339

340340
private Object getStringOrDate(String s) {
341341
try {
342-
DateFormat timestampFormat = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'");
342+
DateFormat timestampFormat = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSX");
343343
return timestampFormat.parse(s);
344344
} catch (ParseException x) {
345345
return s;

0 commit comments

Comments
 (0)