diff --git a/app/frontend/src/components/torrent/FileList.vue b/app/frontend/src/components/torrent/FileList.vue index 4b12f46..99300d5 100644 --- a/app/frontend/src/components/torrent/FileList.vue +++ b/app/frontend/src/components/torrent/FileList.vue @@ -39,7 +39,7 @@ export default { methods: { async fetchFiles(){ this.loading = true; - let response = await fetch(`/api/torrent/files?${new URLSearchParams(this.filters)}`); + let response = await fetch(`/api/torrent/files/?${new URLSearchParams(this.filters)}`); this.files = await response.json(); this.loading = false; return this.files;