fs_query: increase file-content limit to 64 KiB

The former limit to 4 KiB is too small for complex Sculpt presets like
the video-chat scenario.

Fixes #4788
This commit is contained in:
Norman Feske 2023-03-15 15:43:09 +01:00
parent fd7001d020
commit 2c1b51be65

View File

@ -61,7 +61,7 @@ struct Fs_query::Watched_file
void _gen_content(Xml_generator &xml, Allocator &alloc, Directory const &dir) const
{
File_content content(alloc, dir, _name, File_content::Limit{4*1024});
File_content content(alloc, dir, _name, File_content::Limit{64*1024});
bool content_is_xml = false;