mirror of
https://github.com/genodelabs/genode.git
synced 2025-06-17 06:38:28 +00:00
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:
@ -61,7 +61,7 @@ struct Fs_query::Watched_file
|
|||||||
|
|
||||||
void _gen_content(Xml_generator &xml, Allocator &alloc, Directory const &dir) const
|
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;
|
bool content_is_xml = false;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user