mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-05-13 16:37:27 +00:00
Use base64 padding when encoding in the notify kitten
Otherwise kitty warns about incomplete base64 data in its stderr
This commit is contained in:
parent
c07037b558
commit
daa8e6b05d
1 changed files with 1 additions and 1 deletions
|
|
@ -25,7 +25,7 @@ const ESC_CODE_SUFFIX = "\x1b\\"
|
|||
const CHUNK_SIZE = 4096
|
||||
|
||||
func b64encode(x string) string {
|
||||
return base64.RawStdEncoding.EncodeToString(utils.UnsafeStringToBytes(x))
|
||||
return base64.StdEncoding.EncodeToString(utils.UnsafeStringToBytes(x))
|
||||
}
|
||||
|
||||
func check_id_valid(x string) bool {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue