Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixup!
  • Loading branch information
avivkeller committed Oct 18, 2025
commit 5e6f4ec3cdaa73c6165a6871fcd82db2f2ba34f0
2 changes: 1 addition & 1 deletion src/utils/parser.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const loadFromURL = async url => {

if (!parsedUrl || parsedUrl.protocol === 'file:') {
// Load from file system
return readFile(parsedUrl, 'utf-8');
return readFile(parsedUrl || url, 'utf-8');
} else {
// Load from network
const response = await fetch(parsedUrl);
Expand Down
Loading