Fix minifying renders MC 0.5.22+ unusable if minifying is enabled #1336 * pluginHandler.js: Removed superfluous ; to fix faulty substitution in minifying mode
Fix minifying renders MC 0.5.22+ unusable if minifying is enabled #1336 * pluginHandler.js: Removed superfluous ; to fix faulty substitution in minifying mode
Veit Wahlich committed
May 12, 2020 at 15:24 UTC
97c54b78deb42dd2ce5e2ff743e7d6c2e7f2ea5c
1 file changed
+1
-1
pluginHandler.js
+1
-1
@@ -123,7 +123,7 @@ module.exports.pluginHandler = function (parent) {
123
st.src = '/pluginHandler.js';
124
document.body.appendChild(st);
125
};
126
- return obj; };`;
126
+ return obj; }`;
127
return str;
128
}
129