rename qmdl path so that downloaded files have a qmdl extension

This commit is contained in:
Cooper Quintin
2025-02-07 15:47:27 -08:00
committed by Will Greenberg
parent 049c563f02
commit a3fd1479f9
2 changed files with 4 additions and 3 deletions

View File

@@ -136,7 +136,7 @@ function createEntryRow(entry, isCurrent) {
row.appendChild(pcapTd);
const qmdlTd = document.createElement('td');
qmdlTd.appendChild(createLink(`/api/qmdl/${entry.name}`, 'qmdl'));
qmdlTd.appendChild(createLink(`/api/qmdl/${entry.name}.qmdl`, 'qmdl'));
row.appendChild(qmdlTd);
const analysisResult = document.createElement('td');