tangled
alpha
login
or
join now
notnite.com
/
moonlight
3
fork
atom
this repo has no description
3
fork
atom
overview
issues
pulls
pipelines
Fix using remapped paths as patch finds not working
Cynthia Foxwell
11 months ago
5fa31a04
ed9104ba
+1
-1
1 changed file
expand all
collapse all
unified
split
packages
core
src
patch.ts
+1
-1
packages/core/src/patch.ts
···
116
116
const origModuleString = moduleCache[id];
117
117
let moduleString = origModuleString;
118
118
const patchedStr = [];
119
119
-
const mappedName = moonlight.moonmap.modules[id];
119
119
+
const mappedName = Object.entries(moonlight.moonmap.modules).find((m) => m[1] === id)?.[0];
120
120
let modified = false;
121
121
let swappedModule = false;
122
122