We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12159f0 commit 009e964Copy full SHA for 009e964
src/utils/bundleFeedUtils.ts
@@ -90,7 +90,7 @@ export namespace bundleFeedUtils {
90
export async function addDefaultBundle(context: IActionContext, hostJson: IHostJsonV2): Promise<void> {
91
let versionRange: string;
92
try {
93
- versionRange = await getLatestVersionRange(context);
+ versionRange = (await getLatestVersionRange(context)) ?? defaultVersionRange;
94
} catch {
95
versionRange = defaultVersionRange;
96
}
0 commit comments