mirror of
https://github.com/SunRed/haste-server.git
synced 2024-11-01 01:30:21 +01:00
Set Content-Type of raw paste to plaintext
This commit is contained in:
parent
592e484d35
commit
f93aac983a
1 changed files with 1 additions and 0 deletions
|
@ -81,6 +81,7 @@ const utils = new HasteUtils();
|
||||||
app.get('/raw/:id', async (req, res) => {
|
app.get('/raw/:id', async (req, res) => {
|
||||||
const key = req.params.id.split('.')[0];
|
const key = req.params.id.split('.')[0];
|
||||||
const skipExpire = Boolean(config.documents[key]);
|
const skipExpire = Boolean(config.documents[key]);
|
||||||
|
res.setHeader('content-type', 'text/plain');
|
||||||
return await documentHandler.handleGetRaw(key, res, skipExpire);
|
return await documentHandler.handleGetRaw(key, res, skipExpire);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue