From: Tristan Mahé <gled@remote-shell.net>
Date: Tue, 26 Jun 2018 21:35:35 +0000 (-0700)
Subject: maybe I should learn proper elixir ;D
X-Git-Url: https://git.squeep.com/?a=commitdiff_plain;h=ca63585a329f0afa02f7d539328f5fb3485d2a29;p=akkoma

maybe I should learn proper elixir ;D
---

diff --git a/lib/pleroma/upload.ex b/lib/pleroma/upload.ex
index 1640c1f9c..45fac9060 100644
--- a/lib/pleroma/upload.ex
+++ b/lib/pleroma/upload.ex
@@ -86,10 +86,10 @@ defmodule Pleroma.Upload do
 
   def strip_exif_data(content_type, file) do
     settings = Application.get_env(:pleroma, Pleroma.Upload)
-    @do_strip = Keyword.fetch!(settings, :strip_exif)
+    do_strip = Keyword.fetch!(settings, :strip_exif)
     [filetype, ext] = String.split(content_type, "/")
 
-    if filetype == "image" and @do_strip == true do
+    if filetype == "image" and do_strip == true do
       Mogrify.open(file) |> Mogrify.custom("strip") |> Mogrify.save(in_place: true)
     end
   end