From c5bd42ece757df4fe8a42df491a93990668c4974 Mon Sep 17 00:00:00 2001 From: fullgream Date: Fri, 16 May 2025 03:22:13 +0300 Subject: [PATCH] rm await --- server.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.js b/server.js index 83c814d..e930a9d 100644 --- a/server.js +++ b/server.js @@ -35,7 +35,7 @@ class POP3 extends EventEmitter { ).map(async x => { x[1] = { uid: x[1], - msg: await await pop3.pop3cmd.RETR(+x[0]) + msg: await pop3.pop3cmd.RETR(+x[0]) } return x; });