pipe-kan 0.21.0 → 0.21.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.
package/dist/pipe-kan.js
CHANGED
|
@@ -952,7 +952,7 @@ function handleAppApi(req, res, app) {
|
|
|
952
952
|
const body = text ? JSON.parse(text) : {};
|
|
953
953
|
const key = String(body.key ?? "");
|
|
954
954
|
const status = String(body.status ?? "");
|
|
955
|
-
if (body.raw) {
|
|
955
|
+
if (body.raw === true) {
|
|
956
956
|
const result = await app.moveRaw(key, status);
|
|
957
957
|
json(res, result.ok ? 200 : 409, result);
|
|
958
958
|
return;
|