test: Cover more ways to request apps and files.
All checks were successful
Build Tilde Friends / Build-All (push) Successful in 15m15s

This commit is contained in:
2024-11-02 15:43:03 -04:00
parent fd4ac7c9b9
commit 30e027092b
6 changed files with 43 additions and 2 deletions

View File

@ -1077,7 +1077,8 @@ static void _httpd_endpoint_view_work(tf_ssb_t* ssb, void* user_data)
}
else
{
tf_ssb_db_blob_get(ssb, blob_id, (uint8_t**)&view->data, &view->size);
bool result = tf_ssb_db_blob_get(ssb, blob_id, (uint8_t**)&view->data, &view->size);
tf_printf("ssb=%p result=%d blob_id=[%s] data=%p size=%zd\n", ssb, result, blob_id, view->data, view->size);
}
}
}