Skip to content

Commit

Permalink
Merge pull request #38 from KPMP/develop
Browse files Browse the repository at this point in the history
Fix platform sort for Release v6.5
  • Loading branch information
rlreamy authored Oct 9, 2024
2 parents 44596de + b528b2e commit 35e16f0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ public void setFileNameSort(String fileNameSort) {

@JsonProperty("platform_sort")
public String getPlatformSort() {
return (platform == null) ? "aaaaa" : platform;
return (platform == null || platform.isEmpty()) ? "aaaaa" : platform.toUpperCase();
}

private boolean shouldAdd(String value) {
Expand Down

0 comments on commit 35e16f0

Please sign in to comment.