theographic-bible-metadata
theographic-bible-metadata copied to clipboard
Removing a null value from writers in Psalms on books database
The Psalms on books database have a null in the writers array.
In the CSV the value is:
", david_994, asaph_330, solomon_2762, heman_1488, ethan_1222, moses_2108"
So I change the value to:
"david_994, asaph_330, solomon_2762, heman_1488, ethan_1222, moses_2108"
In the JSON the actual value is:
"writers": [
null,
"david_994",
"asaph_330",
"solomon_2762",
"heman_1488",
"ethan_1222",
"moses_2108"
],
So I just removed the null as first element.