Skip to content

Commit c6ee7c1

Browse files
committed
fix(discord): fix a bug that notification having wrong unfollower count
1 parent 09b987a commit c6ee7c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/notifiers/discord.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ export class DiscordNotifier extends BaseNotifier {
8686
if (unfollowerLogs.length > 0) {
8787
const field = this.generateEmbedField(
8888
unfollowerLogs,
89-
Logger.format("❌ {} {}", followerLogs.length, pluralize("unfollower", logs.length)),
89+
Logger.format("❌ {} {}", unfollowerLogs.length, pluralize("unfollower", logs.length)),
9090
);
9191

9292
newFields.push(field);

0 commit comments

Comments
 (0)