Skip to content

Commit

Permalink
Fixes PHEE-420: Extra newline while verifying signature (#43)
Browse files Browse the repository at this point in the history
* Fixed the bug

* Updated version to rc.2
  • Loading branch information
danishjamal104 authored Sep 4, 2023
1 parent beed14d commit c148994
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 @@ -167,7 +167,7 @@ configure(this) {
}

group = 'org.mifos'
version = '1.6.1-rc.1'
version = '1.6.1-rc.2'
sourceCompatibility = JavaVersion.VERSION_17
def artifactId = 'ph-ee-connector-common'
def versionNumber = version
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ public static String parseFormData(InputStream inputStream, String boundary) thr
}
}
}
return partContent.toString();
return partContent.toString().trim();
}

// returns true if the request is of multipart type
Expand Down

0 comments on commit c148994

Please sign in to comment.