Skip to content

Commit

Permalink
Fixed typo for mutable-content field
Browse files Browse the repository at this point in the history
  • Loading branch information
judepereira committed Sep 13, 2016
1 parent bea7aea commit 72bc791
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,9 @@ public Builder(String token) {

public Builder mutableContent(boolean mutable) {
if (mutable) {
alert.put("mutable-content", 1);
aps.put("mutable-content", 1);
} else {
alert.remove("mutable-content");
aps.remove("mutable-content");
}

return this;
Expand Down

0 comments on commit 72bc791

Please sign in to comment.