Skip to content

Commit acd6c8e

Browse files
committed
Fix fallback to unstable version
It was checking the result of the previous search for a stable unyanked version.
1 parent 4f9ff6b commit acd6c8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/routes/crate/version.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export default Route.extend({
6161
}
6262
});
6363

64-
if (latestStableVersion == null) {
64+
if (latestUnyankedVersion == null) {
6565
// There's not even any unyanked version...
6666
params.version_num = maxVersion;
6767
} else {

0 commit comments

Comments
 (0)