fix category on .torrent file add

This commit is contained in:
nikk gitanes
2024-04-10 17:15:21 +03:00
parent e842cf1105
commit 5922c7d320
4 changed files with 6 additions and 3 deletions

View File

@@ -218,6 +218,7 @@ export default function AddDialog({
data.append('save', 'true')
data.append('file', selectedFile)
title && data.append('title', title)
category && data.append('category', category)
posterUrl && data.append('poster', posterUrl)
axios.post(torrentUploadHost(), data).catch(handleClose)
} else {