Browse Source

Fix GifReader exceptions (#13760)

master
ThibG 4 years ago
committed by GitHub
parent
commit
927f9ea499
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      lib/paperclip/gif_transcoder.rb

+ 1
- 1
lib/paperclip/gif_transcoder.rb View File

@ -6,7 +6,7 @@ class GifReader
EXTENSION_LABELS = [0xf9, 0x01, 0xff].freeze
GIF_HEADERS = %w(GIF87a GIF89a).freeze
class GifReaderException; end
class GifReaderException < StandardError; end
class UnknownImageType < GifReaderException; end

Loading…
Cancel
Save