mirror of
https://github.com/lune-org/lune.git
synced 2025-04-04 10:30:54 +01:00
fix: handle buffers in compress_decompress too
This commit is contained in:
parent
89d66a93de
commit
ef4fe6e1eb
1 changed files with 6 additions and 6 deletions
|
@ -36,16 +36,16 @@ fn serde_decode<'lua>(
|
|||
|
||||
async fn serde_compress<'lua>(
|
||||
lua: &'lua Lua,
|
||||
(format, str): (CompressDecompressFormat, LuaString<'lua>),
|
||||
) -> LuaResult<LuaString<'lua>> {
|
||||
(format, str): (CompressDecompressFormat, BString),
|
||||
) -> LuaResult<LuaAnyUserData<'lua>> {
|
||||
let bytes = compress(format, str).await?;
|
||||
lua.create_string(bytes)
|
||||
lua.create_buffer(bytes)
|
||||
}
|
||||
|
||||
async fn serde_decompress<'lua>(
|
||||
lua: &'lua Lua,
|
||||
(format, str): (CompressDecompressFormat, LuaString<'lua>),
|
||||
) -> LuaResult<LuaString<'lua>> {
|
||||
(format, str): (CompressDecompressFormat, BString),
|
||||
) -> LuaResult<LuaAnyUserData<'lua>> {
|
||||
let bytes = decompress(format, str).await?;
|
||||
lua.create_string(bytes)
|
||||
lua.create_buffer(bytes)
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue