summaryrefslogtreecommitdiff
path: root/src/com/p4square/f1oauth
diff options
context:
space:
mode:
authorJesse Morgan <jesse@jesterpm.net>2014-09-27 15:41:44 -0700
committerJesse Morgan <jesse@jesterpm.net>2014-09-27 15:41:44 -0700
commitaa0f29bb6e4ab179b18e4b373a1fb8a3b840b594 (patch)
tree3527cc62874af66dd3ce67dfb6658d06a03f6564 /src/com/p4square/f1oauth
parentbdf47fc7340ec2a3ecaa6b11bbf87f0f5eaaeea1 (diff)
Adding F1 Attribute Backfill Tool.
Diffstat (limited to 'src/com/p4square/f1oauth')
-rw-r--r--src/com/p4square/f1oauth/F1Access.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/com/p4square/f1oauth/F1Access.java b/src/com/p4square/f1oauth/F1Access.java
index 439e508..5b6f7ce 100644
--- a/src/com/p4square/f1oauth/F1Access.java
+++ b/src/com/p4square/f1oauth/F1Access.java
@@ -406,7 +406,9 @@ public class F1Access {
.get("attribute");
String attributeName = (String) attributeIdMap.get("name");
- if (attributeNameFilter == null || attributeNameFilter.equals(attributeName)) {
+ if (attributeNameFilter == null
+ || attributeNameFilter.equalsIgnoreCase(attributeName)) {
+
Attribute attribute = new Attribute(attributeName);
attribute.setId(id);
if (startDate != null) {