diff --git a/edit-instrument-recordings-links.user.js b/edit-instrument-recordings-links.user.js index 473adde..028bbfe 100644 --- a/edit-instrument-recordings-links.user.js +++ b/edit-instrument-recordings-links.user.js @@ -52,7 +52,7 @@ header.appendChild(headerColumn); // We add the links to the recordings for (let i = 0; i < recordings.length; i++) { const recordingRow = recordings[i]; - const recordingUrl = recordingRow.childNodes[3].childNodes[0].getAttribute('href'); + const recordingUrl = recordingRow.childNodes[1].childNodes[0].getAttribute('href'); const extraCell = document.createElement('td'); extraCell.innerHTML = `edit`; recordingRow.appendChild(extraCell);