diff options
author | rinpatch <rinpatch@sdf.org> | 2018-11-27 19:07:58 +0300 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2018-11-27 19:07:58 +0300 |
commit | 0d229613dfc771ee71272541ffff9ef640c2dc05 (patch) | |
tree | 2f0b5214e2c42bc02b174e4e446984d833573029 | |
parent | 7f20a3cf1fc9655056382c403f835a1bf57b8be2 (diff) | |
download | pleroma-0d229613dfc771ee71272541ffff9ef640c2dc05.tar.gz |
Fix lint error
-rw-r--r-- | lib/pleroma/upload.ex | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/pleroma/upload.ex b/lib/pleroma/upload.ex index 9dcd9987a..238630bf3 100644 --- a/lib/pleroma/upload.ex +++ b/lib/pleroma/upload.ex @@ -163,8 +163,9 @@ defmodule Pleroma.Upload do <<0x4F, 0x67, 0x67, 0x53, 0x00, 0x02, 0x00, 0x00>> -> case IO.binread(f, 27) do - <<_::size(160), 0x80, 0x74,0x68,0x65,0x6f,0x72,0x61>> -> + <<_::size(160), 0x80, 0x74, 0x68, 0x65, 0x6F, 0x72, 0x61>> -> "video/ogg" + _ -> "audio/ogg" end |