From b5af6e7e2c173db5780d4465eef858c80940e44f Mon Sep 17 00:00:00 2001 From: Rbanh Date: Sun, 30 Mar 2025 19:34:54 -0400 Subject: [PATCH] Fix parameter name for single plugin update command and update roadmap --- ROADMAP.md | 4 +++- src/App.tsx | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ROADMAP.md b/ROADMAP.md index f8dfb40..82cf33c 100644 --- a/ROADMAP.md +++ b/ROADMAP.md @@ -28,6 +28,7 @@ - [x] Implement SpigotMC data source using SpiGet API - [x] Basic implementation - [x] Fix version information retrieval issues + - [ ] Reduce version warning logs and improve caching - [ ] Handle rate limiting and 403 errors - [x] Implement Modrinth crawler - [x] Basic implementation @@ -56,7 +57,8 @@ - [x] Improve matching algorithm to reduce false positives - [x] Complete GitHub integration - [ ] Add GitHub API authentication for higher rate limits (environment variable support exists) - - [ ] Investigate SpigotMC 403 errors (potentially add headers/delay) + - [ ] Fix command parameter naming issues for update checks + - [ ] Optimize duplicate plugin search results (e.g., ViaVersion plugin) - [x] Implement changelog extraction - [x] Create plugin backup functionality - [x] Develop plugin replacement logic diff --git a/src/App.tsx b/src/App.tsx index ccd3d74..96953ef 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -607,7 +607,7 @@ function App() { await invoke("check_single_plugin_update_command", { plugin: pluginToSend, - repositoriesToCheck, + repositories: repositoriesToCheck, }); } catch (err) { const errorMessage = `Error invoking single update command for ${plugin.name}: ${err instanceof Error ? err.message : String(err)}`;