remove automatic tag 'animated' from webm posts

This commit is contained in:
edshot99 2024-12-09 18:01:01 -06:00
parent 451bafb1fc
commit e6baea4811

View File

@ -73,7 +73,7 @@ class UploadService
tags = []
tags += ["animated_gif", "animated"] if upload.is_animated_gif?(file.path)
tags += ["animated_png", "animated"] if upload.is_animated_png?(file.path)
tags += ["animated"] if upload.is_webm?
# tags += ["animated"] if upload.is_webm?
tags += ["ai_generated"] if upload.is_ai_generated?(file.path)
tags.join(" ")
end