fix: read chats from api when is only one page

This commit is contained in:
2025-11-03 11:39:10 -03:00
parent 5bb0ad8b1a
commit 90b30b0d51
2 changed files with 21 additions and 1 deletions

20
.vscode/launch.json vendored
View File

@@ -41,6 +41,24 @@
},
"args": [],
"cwd": "${workspaceFolder}"
}
},
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'groupper_report'",
"cargo": {
"args": [
"build",
"--bin=groupped_repport",
"--package=piperun-bot"
],
"filter": {
"name": "groupped_repport",
"kind": "bin"
}
},
"args": ["cargo", "run", "--bin=groupped_repport"],
"cwd": "${workspaceFolder}"
},
]
}