From 3b4e5b17c3a144204c6b67b7992eaf21e6e2bdd3 Mon Sep 17 00:00:00 2001 From: Jordan Eldredge Date: Mon, 29 Dec 2025 13:15:46 -0800 Subject: [PATCH] Remove blocklist of skins with viruses. These are now purged. --- .../api/graphql/resolvers/BulkDownloadConnection.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/packages/skin-database/api/graphql/resolvers/BulkDownloadConnection.ts b/packages/skin-database/api/graphql/resolvers/BulkDownloadConnection.ts index 56da9a08..bc97e0b2 100644 --- a/packages/skin-database/api/graphql/resolvers/BulkDownloadConnection.ts +++ b/packages/skin-database/api/graphql/resolvers/BulkDownloadConnection.ts @@ -61,9 +61,6 @@ export class BulkDownloadConnection { .where((builder) => { builder.where({ skin_type: 1 }).orWhere({ skin_type: 2 }); }) - // https://www.virustotal.com/gui/file/cc75df902c1e128433a7f7b8635aa928fe4cefbdcd91564b7e66305a25edd538 - // This got flagged as malicious. Unclear if it's a false positive or real. - .whereNot({ md5: "5dac271c708d620db7b29d5bcf1598c2" }) .limit(this._first) .offset(this._offset);