diff options
author | FChannel <> | 2022-05-01 10:50:48 -0700 |
---|---|---|
committer | FChannel <> | 2022-06-19 12:53:29 -0700 |
commit | 2af4a39ac16c6245f0e87ddf3cc137339f6c604f (patch) | |
tree | cec86f25fd4bcd7cc1efd0bd01cfe8524b41c42c /post/util.go | |
parent | 503a6637b8294aeb8e5e5546f8acbd2b3d6c4744 (diff) |
creating new post and replying to post working
Diffstat (limited to 'post/util.go')
-rw-r--r-- | post/util.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/post/util.go b/post/util.go index cead842..0b87d42 100644 --- a/post/util.go +++ b/post/util.go @@ -155,7 +155,7 @@ func IsMediaBanned(f multipart.File) (bool, error) { hash := util.HashBytes(fileBytes) - // f.Seek(0, 0) + f.Seek(0, 0) return db.IsHashBanned(hash) } |