Skip to content

Commit

Permalink
make version blank if no patch version
Browse files Browse the repository at this point in the history
  • Loading branch information
wsbrunson committed Jun 18, 2024
1 parent 172d32b commit 7888c61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/meta.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ export function unpackSDKMeta(sdkMeta?: string): SDKMeta {
var patchString = version?.split('.')?.pop()
if (!patchString) {
version = 'latest'
version = ''
} else if (parseInt(patchString, 10) < 132) {
version = '4.0.132'
}
Expand Down

0 comments on commit 7888c61

Please sign in to comment.