posts: autotag video instead of webm/mp4.

Automatically add the `video` tag instead of the `webm` or `mp4` tags.
This commit is contained in:
evazion
2020-07-13 17:59:52 -05:00
parent 1e2e99a941
commit 5687c67fc3
2 changed files with 6 additions and 10 deletions

View File

@@ -499,7 +499,7 @@ class Post < ApplicationRecord
end
def add_automatic_tags(tags)
tags -= %w(incredibly_absurdres absurdres highres lowres huge_filesize flash webm mp4)
tags -= %w(incredibly_absurdres absurdres highres lowres huge_filesize flash)
if has_dimensions?
if image_width >= 10_000 || image_height >= 10_000
@@ -532,12 +532,8 @@ class Post < ApplicationRecord
tags << "flash"
end
if is_webm?
tags << "webm"
end
if is_mp4?
tags << "mp4"
if is_video?
tags << "video"
end
if is_ugoira?