Software /
code /
verse
Diff
libs/encodings.lua @ 391:b496f0262a3f
libs.encodings: mime.unb64 is buggy with \0 should have been fixed
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Tue, 25 Aug 2015 16:27:38 +0200 |
parent | 130:5de7f66e4168 |
child | 431:9d7a293849f3 |
line wrap: on
line diff
--- a/libs/encodings.lua Tue Aug 25 16:07:20 2015 +0200 +++ b/libs/encodings.lua Tue Aug 25 16:27:38 2015 +0200 @@ -7,6 +7,6 @@ module "encodings" stringprep = {}; -base64 = { encode = mime.b64, decode = not_impl }; --mime.unb64 is buggy with \0 +base64 = { encode = mime.b64, decode = mime.unb64 }; return _M;