mirror of
https://gitlab.com/timvisee/send.git
synced 2024-11-10 05:02:45 +01:00
changes requested in review
This commit is contained in:
parent
ff9a107a29
commit
ebbf06787c
@ -14,7 +14,7 @@ module.exports = async (req, res) => {
|
||||
const meta = await storage.metadata(id);
|
||||
res.set('WWW-Authenticate', `send-v1 ${meta.nonce}`);
|
||||
res.send({
|
||||
password: meta.pwd
|
||||
password: meta.pwd !== '0'
|
||||
});
|
||||
} catch (e) {
|
||||
res.sendStatus(404);
|
||||
|
@ -29,8 +29,8 @@ module.exports = async function(req, res) {
|
||||
const ttl = await storage.ttl(id);
|
||||
res.send({
|
||||
metadata: meta.metadata,
|
||||
dtotal: meta.dl,
|
||||
dlimit: meta.dlimit,
|
||||
dtotal: +meta.dl,
|
||||
dlimit: +meta.dlimit,
|
||||
size,
|
||||
ttl
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user