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 33d3205 commit e466509Copy full SHA for e466509
src/index.ts
@@ -99,7 +99,8 @@ function getUnityChangesetsFromUrl(
99
const match = raw.match(REGEXP_HUB_LINKS);
100
101
if (!match) {
102
- throw new Error(`No changesets found at '${url}'`);
+ console.error(`No changesets found at '${url}'`);
103
+ return [];
104
}
105
106
return match.map((m) => UnityChangeset.createFromHref(m));
0 commit comments