From d59a5728dfc977f44533186ace531248c2917516 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Fri, 11 Apr 2025 19:58:48 -0400 Subject: [PATCH] lint: fix missing comma --- src/user/follow.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/user/follow.js b/src/user/follow.js index 9a497e6488..0595e50ff8 100644 --- a/src/user/follow.js +++ b/src/user/follow.js @@ -59,7 +59,7 @@ module.exports = function (User) { } const [followingCount, followingRemoteCount, followerCount, followerRemoteCount] = await db.sortedSetsCard([ - `following:${uid}`, `followingRemote:${uid}`, `followers:${theiruid}`, `followersRemote:${theiruid}` + `following:${uid}`, `followingRemote:${uid}`, `followers:${theiruid}`, `followersRemote:${theiruid}`, ]); await Promise.all([ User.setUserField(uid, 'followingCount', followingCount + followingRemoteCount),