Skip to content

Commit

Permalink
Bump version to 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
micheljung committed May 14, 2018
1 parent be33e0c commit 672353e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ apply plugin: 'propdeps'
apply plugin: 'idea'

group = 'faforever'
version = '1.1.6'
version = '1.2.0'

sourceCompatibility = 1.8
targetCompatibility = 1.8
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/faforever/api/mautic/MauticService.java
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public CompletableFuture<Object> createOrUpdateContact(String email, String fafU
Optional.ofNullable(ipAddress).ifPresent(s -> body.put("ipAddress", ipAddress));
Optional.ofNullable(lastActive).ifPresent(s -> body.put("lastActive", lastActive));

// These are Mautic "custom fields" that need to be created explicitly. For some reason, these are underscore case by default.
// These are Mautic "custom fields" that need to be created explicitly. For some reason, these are underscore case by default.
Optional.ofNullable(fafUserId).ifPresent(s -> body.put("faf_user_id", fafUserId));
Optional.ofNullable(fafUserName).ifPresent(s -> body.put("faf_username", fafUserName));

Expand Down

0 comments on commit 672353e

Please sign in to comment.