From 45373c2529b2fda32a8fd1d77e49f183b1ab860f Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sat, 1 May 2021 10:26:48 -0400 Subject: [PATCH] Fix --- commands/analyze/repost.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/analyze/repost.js b/commands/analyze/repost.js index 2d6519f7..535758cf 100644 --- a/commands/analyze/repost.js +++ b/commands/analyze/repost.js @@ -35,7 +35,7 @@ module.exports = class RepostCommand extends Command { const results = await this.checkImage(body, image); if (results === false) return msg.reply('This image is clean.'); return msg.reply(stripIndents` - This image may be a repost. I've seen it **${results.matches.length}** times. + This image may be a repost. I've seen it **${results.matches.length + 1}** times. The closest match is at **${results.closest_match.hamming_match_percent}%** similarity. ${results.closest_match.post.url} `);