Running 'cargo run --example invite' with patchwork running in the background, I get this error, from the invite.use part:
Application error: SSB RPC failure: json decoding
If I change to use Keystore::GoSbot and run go-sbot in the background, I get this error: Application error: Sbot returned an error response: muxrpc: no such command: invite.use
So from my testing, the invite.use functionality in golgi might not be working right now.
Running 'cargo run --example invite' with patchwork running in the background, I get this error, from the invite.use part:
Application error: SSB RPC failure: json decoding
If I change to use Keystore::GoSbot and run go-sbot in the background, I get this error:
```Application error: Sbot returned an error response: muxrpc: no such command: invite.use```
So from my testing, the invite.use functionality in golgi might not be working right now.
glyph
added the bug label 2022-06-08 10:24:45 +00:00
Hmm GoSbot seems to implement the invite.use call so I'm not sure why that error is being returned.
The Patchwork error suggests we're attempting to decode the returned JSON into the wrong shape.
I'll take a closer look at this in due course.
Hmm GoSbot seems to implement the `invite.use` call so I'm not sure why that error is being returned.
The Patchwork error suggests we're attempting to decode the returned JSON into the wrong shape.
I'll take a closer look at this in due course.
Was struggling with a related error in the actual Go API code over in https://github.com/ssbc/go-ssb/issues/203 but maybe not related. There is some magic in the way go-ssb wires up the invite accept but it's working from the sbotcli side now. Hopefully enough for this to work!
Was struggling with a related error in the actual Go API code over in https://github.com/ssbc/go-ssb/issues/203 but maybe not related. There is some magic in the way `go-ssb` wires up the invite accept but it's working from the `sbotcli` side now. Hopefully enough for this to work!
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Running 'cargo run --example invite' with patchwork running in the background, I get this error, from the invite.use part:
Application error: SSB RPC failure: json decoding
If I change to use Keystore::GoSbot and run go-sbot in the background, I get this error:
Application error: Sbot returned an error response: muxrpc: no such command: invite.useSo from my testing, the invite.use functionality in golgi might not be working right now.
Hmm GoSbot seems to implement the
invite.usecall so I'm not sure why that error is being returned.The Patchwork error suggests we're attempting to decode the returned JSON into the wrong shape.
I'll take a closer look at this in due course.
sbotclisupportsinvite accept <invite> <feed-id>now:✌️
Was struggling with a related error in the actual Go API code over in https://github.com/ssbc/go-ssb/issues/203 but maybe not related. There is some magic in the way
go-ssbwires up the invite accept but it's working from thesbotcliside now. Hopefully enough for this to work!Thanks, @decentral1se !
I'll keep this issue open for the moment, just until I have the chance to test the behaviour from
golgi->go-sbot.