Skip to content

Commit

Permalink
chore(#2122): check for ApiVersion.V3
Browse files Browse the repository at this point in the history
  • Loading branch information
SteKoe committed Sep 18, 2022
1 parent f3c7f16 commit 2687a5a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ const ApiVersion = Object.freeze({
});
function isActuatorApiVersionSupported(headerContentType) {
return headerContentType.includes(ApiVersion.V2) || headerContentType.includes(ApiVersion.V2);
return headerContentType.includes(ApiVersion.V2) || headerContentType.includes(ApiVersion.V3);
}
export default {
Expand Down

0 comments on commit 2687a5a

Please sign in to comment.