Fix crash for leftover documents in sqlite index

This commit is contained in:
simon987 2024-04-03 18:38:04 -04:00
parent 89e1968994
commit fc06b3e378

View File

@ -430,6 +430,11 @@ void file(struct mg_connection *nc, struct mg_http_message *hm) {
cJSON *source = get_root_document_by_id(sid.index_id, sid.doc_id);
if (source == NULL) {
HTTP_REPLY_NOT_FOUND
return;
}
if (strlen(idx->desc.rewrite_url) == 0) {
serve_file_from_disk(source, idx, nc, hm);
} else {