Skip to content

Commit

Permalink
Fix Windows being Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerrit0 committed Jun 1, 2024
1 parent 0875618 commit b5e46cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/models/MediaRegistry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export class MediaRegistry {
};

for (const [key, val] of this.mediaToPath.entries()) {
result.entries[key] = relative(ser.projectRoot, val);
result.entries[key] = normalizePath(relative(ser.projectRoot, val));
}
for (const [key, val] of this.mediaToReflection.entries()) {
result.reflections[key] = val.id;
Expand Down

0 comments on commit b5e46cb

Please sign in to comment.