Skip to content

Commit

Permalink
Fix #141910
Browse files Browse the repository at this point in the history
  • Loading branch information
sandy081 committed Feb 1, 2022
1 parent 61b42a3 commit 82329fb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1052,9 +1052,9 @@ abstract class AbstractExtensionGalleryService implements IExtensionGalleryServi
if (seenVersions.has(version.version)) {
return;
}
seenVersions.add(version.version);
if (await this.isValidVersion(version, preRelease ? 'prerelease' : 'release', true, allTargetPlatforms, targetPlatform)) {
result.push({ version: version.version, date: version.lastUpdated, isPreReleaseVersion: isPreReleaseVersion(version) });
seenVersions.add(version.version);
}
} catch (error) { /* Ignore error and skip version */ }
}));
Expand Down

0 comments on commit 82329fb

Please sign in to comment.