add file extensions to downloads, fixes #397

This commit is contained in:
Cooper Quintin
2025-06-18 09:36:52 -07:00
committed by Will Greenberg
parent f2ff1be2ec
commit 0b0dd4ed43
2 changed files with 7 additions and 4 deletions

View File

@@ -86,11 +86,11 @@ export class ManifestEntry {
}
get_pcap_url(): string {
return `/api/pcap/${this.name}`;
return `/api/pcap/${this.name}.pcapng`;
}
get_qmdl_url(): string {
return `/api/qmdl/${this.name}`;
return `/api/qmdl/${this.name}.qmdl`;
}
get_analysis_report_url(): string {