mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-07 08:26:51 +00:00
Prevent a noisy cloud agent exception (#8577)
This commit is contained in:
parent
06a5c2dd19
commit
520b2f63da
1 changed files with 3 additions and 1 deletions
|
|
@ -1836,7 +1836,9 @@ export class ClineProvider
|
|||
let cloudOrganizations: CloudOrganizationMembership[] = []
|
||||
|
||||
try {
|
||||
cloudOrganizations = await CloudService.instance.getOrganizationMemberships()
|
||||
if (!CloudService.instance.isCloudAgent) {
|
||||
cloudOrganizations = await CloudService.instance.getOrganizationMemberships()
|
||||
}
|
||||
} catch (error) {
|
||||
// Ignore this error.
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue