From aa0f29bb6e4ab179b18e4b373a1fb8a3b840b594 Mon Sep 17 00:00:00 2001 From: Jesse Morgan Date: Sat, 27 Sep 2014 15:41:44 -0700 Subject: Adding F1 Attribute Backfill Tool. --- src/com/p4square/f1oauth/F1Access.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/com/p4square/f1oauth/F1Access.java') 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) { -- cgit v1.2.3