Skip to content

Commit

Permalink
lib: allow webp in IMAGE_FORMATS
Browse files Browse the repository at this point in the history
My webp images weren't being tagged and simply adding the relevant mime
type in IMAGE_FORMATS appears to be enough.
  • Loading branch information
adrien-n committed Sep 22, 2024
1 parent 01e5038 commit e469b55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Constants.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
namespace OCA\Recognize;

class Constants {
public const IMAGE_FORMATS = ['image/jpeg', 'image/png', 'image/bmp', 'image/heic', 'image/heif', 'image/tiff'];
public const IMAGE_FORMATS = ['image/jpeg', 'image/png', 'image/bmp', 'image/heic', 'image/heif', 'image/tiff', 'image/webp'];
public const AUDIO_FORMATS = ['audio/mpeg', 'audio/mp4', 'audio/ogg', 'audio/vnd.wav', 'audio/flac'];
public const VIDEO_FORMATS = ['image/gif', 'video/mp4', 'video/MP2T', 'video/x-msvideo', 'video/x-ms-wmv', 'video/quicktime', 'video/ogg', 'video/mpeg', 'video/webm', 'video/x-matroska'];
public const DIRECTORY_FORMATS = ['httpd/unix-directory'];
Expand Down

0 comments on commit e469b55

Please sign in to comment.