mirror of
https://git.qoto.org/fedipage/fedipage.git
synced 2024-11-15 19:47:57 +01:00
Fixed a typo in send note
This commit is contained in:
parent
5eebab659a
commit
9275e06c3c
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ export default async function (req: VercelRequest, res: VercelResponse) {
|
|||
const configData = config.data();
|
||||
let sentIds = [];
|
||||
if (configData != undefined) {
|
||||
sentIds.push(...configData.sendIds);
|
||||
sentIds.push(...configData.sentIds);
|
||||
let lastEpoch = configData.lastEpoch;
|
||||
let currentEpoch = new Date().getTime();
|
||||
let elapsed = currentEpoch - lastEpoch;
|
||||
|
|
Loading…
Reference in a new issue