icn3d 3.36.2 → 3.36.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/icn3d.js +2 -2
- package/icn3d.min.js +1 -1
- package/icn3d.module.js +2 -2
- package/package.json +1 -1
package/icn3d.module.js
CHANGED
|
@@ -57169,8 +57169,8 @@ class BcifParser {
|
|
|
57169
57169
|
// Iterate through every row in the table
|
|
57170
57170
|
let db2Size = database_2.rowCount ;
|
|
57171
57171
|
for (let i = 0; i < db2Size; ++i) {
|
|
57172
|
-
let db_id = database_2.getColumn("database_id").getString(
|
|
57173
|
-
let db_code = database_2.getColumn("database_code").getString(
|
|
57172
|
+
let db_id = database_2.getColumn("database_id").getString(i);
|
|
57173
|
+
let db_code = database_2.getColumn("database_code").getString(i);
|
|
57174
57174
|
|
|
57175
57175
|
if(db_id == "EMDB") {
|
|
57176
57176
|
emd = db_code;
|