Skip to content

Commit

Permalink
fix(server): Initialize pre-release identifier in ServerVersionModel (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
Snarr authored Dec 3, 2024
1 parent 7882e98 commit 806d5a1
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ public void initFrom(Message proto, ExecutionContext context) throws LHSerdeErro

if (serverVersion.hasPreReleaseIdentifier()) {
this.preReleaseIdentifier = Optional.of(serverVersion.getPreReleaseIdentifier());
} else {
this.preReleaseIdentifier = Optional.empty();
}
}

Expand Down

0 comments on commit 806d5a1

Please sign in to comment.