fix warnings
[akkoma] / lib / pleroma / mime.ex
index 5e1c109e98a01b4fe24a9f1af30861ec296c76f8..2cb3d8bd15f940ecaa16f8e248c44035486054c8 100644 (file)
@@ -3,7 +3,7 @@ defmodule Pleroma.MIME do
   Returns the mime-type of a binary and optionally a normalized file-name.
   """
   @default "application/octet-stream"
-  @read_bytes 31
+  @read_bytes 35
 
   @spec file_mime_type(String.t()) ::
           {:ok, content_type :: String.t(), filename :: String.t()} | {:error, any()} | :error