Skip to content

Commit f278761

Browse files
committed
fix: use hashless ref for urls
1 parent 794a8ce commit f278761

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/reference-resolver.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ export default (fetch: any, fs: any) => {
168168

169169
let result;
170170
try {
171-
result = await fetch(ref).then((r: any) => r.json());
171+
result = await fetch(hashlessRef).then((r: any) => r.json());
172172
} catch (e) {
173173
throw new InvalidRemoteURLError(ref);
174174
}

0 commit comments

Comments
 (0)