From be2386b93f2d0a85ceded422319264080f6337dc Mon Sep 17 00:00:00 2001 From: konard Date: Fri, 17 Oct 2025 20:30:20 +0300 Subject: [PATCH 1/3] Initial commit with task details for issue #30 Adding CLAUDE.md with task information for AI processing. This file will be removed when the task is complete. Issue: undefined --- CLAUDE.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 CLAUDE.md diff --git a/CLAUDE.md b/CLAUDE.md new file mode 100644 index 0000000..5b4fe27 --- /dev/null +++ b/CLAUDE.md @@ -0,0 +1,5 @@ +Issue to solve: undefined +Your prepared branch: issue-30-f657504d +Your prepared working directory: /tmp/gh-issue-solver-1760722217665 + +Proceed. \ No newline at end of file From 26f2768c3739ceb87cfe7cde9cf95f1d5da89cf1 Mon Sep 17 00:00:00 2001 From: konard Date: Fri, 17 Oct 2025 20:32:58 +0300 Subject: [PATCH 2/3] Fix AbortError timeout in delete-outgoing-requests.js MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Increased apiTimeout from default 10s to 60s to prevent AbortError when deleting large numbers of friend requests. The default 10-second timeout was insufficient for operations involving many API calls. Fixes #30 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- delete-outgoing-requests.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/delete-outgoing-requests.js b/delete-outgoing-requests.js index 03456e7..420a2f8 100644 --- a/delete-outgoing-requests.js +++ b/delete-outgoing-requests.js @@ -2,7 +2,7 @@ const { trigger } = require('./triggers/delete-outgoing-requests'); const { executeTrigger, getToken } = require('./utils'); const { VK } = require('vk-io'); const token = getToken(); -const vk = new VK({ token }); +const vk = new VK({ token, apiTimeout: 60000 }); // Increase timeout to 60 seconds const maxDeletedFriendsOutgoingRequestsCount = Number(process.argv[2]) || 0; From 784a0a4ccfcc4cbff31fbb8ef346f3c7fea278ef Mon Sep 17 00:00:00 2001 From: konard Date: Fri, 17 Oct 2025 20:33:46 +0300 Subject: [PATCH 3/3] Revert "Initial commit with task details for issue #30" This reverts commit be2386b93f2d0a85ceded422319264080f6337dc. --- CLAUDE.md | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 CLAUDE.md diff --git a/CLAUDE.md b/CLAUDE.md deleted file mode 100644 index 5b4fe27..0000000 --- a/CLAUDE.md +++ /dev/null @@ -1,5 +0,0 @@ -Issue to solve: undefined -Your prepared branch: issue-30-f657504d -Your prepared working directory: /tmp/gh-issue-solver-1760722217665 - -Proceed. \ No newline at end of file