Fix issue with reporting lists

This commit is contained in:
2023-07-21 16:19:03 +02:00
parent 879911366c
commit 76f23e7a8d

View File

@@ -31,7 +31,7 @@ let submit = async e => {
if (single_or_all === "all") {
list.files.forEach(file => {
// Only report files which have not been blocked yet
if (file.abuse_type !== "") {
if (file.abuse_type === "") {
files.push(file.id)
}
})