Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
# frozen_string_literal: true
class ProblemCheck::ImageMagick < ProblemCheck
self.priority = "low"
def call
return no_problem if !SiteSetting.create_thumbnails
return no_problem if Kernel.system("command -v magick >/dev/null;")
problem
end