isite 2026.6.1 → 2026.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
Binary file
|
|
Binary file
|
package/lib/routing.js
CHANGED
|
@@ -1350,7 +1350,7 @@ module.exports = function init(____0) {
|
|
|
1350
1350
|
_0xrrxo.handleRoute(req, res, req.route);
|
|
1351
1351
|
}
|
|
1352
1352
|
});
|
|
1353
|
-
} else if (req.method.contains('
|
|
1353
|
+
} else if (!req.method.contains('get') && req.headers[____0.strings[18]] && req.headers[____0.strings[18]].contains('multipart')) {
|
|
1354
1354
|
let form = ____0.formidable({
|
|
1355
1355
|
multiples: !0,
|
|
1356
1356
|
uploadDir: ____0.options.upload_dir,
|
|
@@ -1382,6 +1382,7 @@ module.exports = function init(____0) {
|
|
|
1382
1382
|
});
|
|
1383
1383
|
req.on('end', function () {
|
|
1384
1384
|
req.dataRaw = req.bodyRaw;
|
|
1385
|
+
|
|
1385
1386
|
req.data = req.body = ____0.fromJson(req.bodyRaw);
|
|
1386
1387
|
if (____0.options.session.enabled) {
|
|
1387
1388
|
____0.session(req, res, ____0, function (session) {
|
package/object-options/index.js
CHANGED