mirror of
https://github.com/simon987/sist2.git
synced 2025-12-15 08:19:06 +00:00
Fix bug with media files, don't encode thumbnail when not necessary
This commit is contained in:
@@ -110,8 +110,8 @@ void *create_bulk_buffer(int max, int *count, size_t *buf_len) {
|
||||
|
||||
size_t buf_size = 0;
|
||||
size_t buf_cur = 0;
|
||||
char *buf = malloc(8196);
|
||||
size_t buf_capacity = 8196;
|
||||
char *buf = malloc(8192);
|
||||
size_t buf_capacity = 8192;
|
||||
|
||||
while (line != NULL && *count < max) {
|
||||
char action_str[256];
|
||||
|
||||
Reference in New Issue
Block a user