bugs fixed
Browse files
server.js
CHANGED
|
@@ -20,7 +20,7 @@ app.get('/ping', (req, res) => {
|
|
| 20 |
*/
|
| 21 |
app.post('/api/process-stream', async (req, res) => {
|
| 22 |
try {
|
| 23 |
-
const { quality, format } = req.
|
| 24 |
|
| 25 |
if (req.is('multipart/form-data')) {
|
| 26 |
// Streaming multipart/form-data is complex without a library like busboy.
|
|
|
|
| 20 |
*/
|
| 21 |
app.post('/api/process-stream', async (req, res) => {
|
| 22 |
try {
|
| 23 |
+
const { quality, format } = req.query;
|
| 24 |
|
| 25 |
if (req.is('multipart/form-data')) {
|
| 26 |
// Streaming multipart/form-data is complex without a library like busboy.
|