Fix new avatars content-type.

This commit is contained in:
John Livingston 2024-02-12 17:20:21 +01:00
parent 8a400d2d9f
commit 1f3677684d
No known key found for this signature in database
GPG Key ID: B17B5640CE66CDBC
2 changed files with 8 additions and 1 deletions

View File

@ -1,5 +1,11 @@
# Changelog # Changelog
## 8.2.1
### Minor changes and fixes
* Fix new avatars content-type.
## 8.2.0 ## 8.2.0
### New features ### New features

View File

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