fix(gmail): accept padded raw message encoding#923
Merged
steipete merged 2 commits intoJul 16, 2026
Conversation
Collaborator
|
Landed in 7785477 from exact reviewed head fe7c109. Proof:
Thanks @goutamadwant for the focused fix and regression test. |
lox
added a commit
to lox/gogcli
that referenced
this pull request
Jul 16, 2026
* lox/fix-calendar-remove-meet: fix(calendar): expose --remove-meet fix(gmail): accept padded raw message encoding (openclaw#923) fix(docs): preserve text-run link targets (openclaw#924)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
gog gmail get --format rawrenders an RFC822 message.Closes #922
Real behavior proof
rawresponse failed before rendering the message.TestGmailGetCmd_RawAcceptsPaddedBase64URLfailed withillegal base64 data at input byte 74.go test ./internal/cmd -run '^TestGmailGetCmd_Raw(AcceptsPaddedBase64URL|Empty)$' -count=1Validation
go test ./internal/cmd -count=1go test ./... -count=1go vet ./...make fmt-checkmake buildmake deadcodemake docker-version-check docs-check agent-skills-checknode --test scripts/eval-gws.test.mjs scripts/eval-gws-agents.test.mjs.tools/golangci-lint run --enable-only=govet,staticcheck,errcheck,unused --new-from-rev=origin/main ./internal/cmd/...(0 issues)The complete 44-linter invocation did not terminate locally after package loading; the focused core linter set passed, and repository CI remains the authoritative full lint run.
Disclosure: AI was used to understand the codebase and review the fix.