mirror of
https://github.com/matrix-construct/construct
synced 2024-11-17 15:30:52 +01:00
modules/media/thumbnail: Reduce the minimum width and height conf item defaults.
This commit is contained in:
parent
0f551f9a4f
commit
e091f09f46
1 changed files with 2 additions and 2 deletions
|
@ -32,7 +32,7 @@ decltype(ircd::m::media::thumbnail::width_min)
|
|||
ircd::m::media::thumbnail::width_min
|
||||
{
|
||||
{ "name", "ircd.m.media.thumbnail.width.min" },
|
||||
{ "default", 128L },
|
||||
{ "default", 16L },
|
||||
};
|
||||
|
||||
decltype(ircd::m::media::thumbnail::width_max)
|
||||
|
@ -46,7 +46,7 @@ decltype(ircd::m::media::thumbnail::height_min)
|
|||
ircd::m::media::thumbnail::height_min
|
||||
{
|
||||
{ "name", "ircd.m.media.thumbnail.height.min" },
|
||||
{ "default", 128L },
|
||||
{ "default", 16L },
|
||||
};
|
||||
|
||||
decltype(ircd::m::media::thumbnail::height_max)
|
||||
|
|
Loading…
Reference in a new issue