Skip to content

Commit

Permalink
fix: Fix skin not applying after BPM exit #96
Browse files Browse the repository at this point in the history
  • Loading branch information
shdwmtr committed Sep 1, 2024
1 parent 712bf42 commit ba9e001
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/src/patcher/Dispatch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export const DOMModifier = {
}

export function constructThemePath(nativeName: string, relativePath: string) {
return ['skins', nativeName, relativePath].join('/');
return [window.location.origin, 'skins', nativeName, relativePath].join('/');
}

export const classListMatch = (classList: string[], affectee: string) => {
Expand Down

0 comments on commit ba9e001

Please sign in to comment.