Wrap overboard api threads inside a page

This commit is contained in:
Pietro Carrara 2021-01-11 20:48:22 -03:00
parent 7004f2b437
commit 8e2a6ccb9d
1 changed files with 5 additions and 2 deletions

View File

@ -468,10 +468,13 @@
$threads[] = new Thread($post);
}
$json = json_encode($api->translateCatalogPage($threads));
// Page 0, the only page
$threads = array($threads);
$json = json_encode($api->translateCatalog($threads));
file_write($config['dir']['home'] . $board_name . '/catalog.json', $json);
$json = json_encode($api->translateCatalogPage($threads, true));
$json = json_encode($api->translateCatalog($threads, true));
file_write($config['dir']['home'] . $board_name . '/threads.json', $json);
}
}