Fix new avatars content-type.

This commit is contained in:
John Livingston
2024-02-12 17:20:21 +01:00
parent 8a400d2d9f
commit 1f3677684d
2 changed files with 8 additions and 1 deletions

View File

@ -10,8 +10,9 @@ local avatars_files = assert(module:get_option_array("peertubelivechat_random_vc
local avatars = {};
local function load_avatar(filename)
local file = assert(io.open(path.join(avatars_dir, filename), "r"));
local filetype = filename.sub(filename, -3); -- jpg or png
local result = {
type = 'image/jpg',
type = 'image/' .. filetype,
content = b64(file:read("*a"))
};
file:close();