Skip to content

Commit

Permalink
Merge pull request #1196 from adrien-n/main
Browse files Browse the repository at this point in the history
lib: allow webp in IMAGE_FORMATS
  • Loading branch information
marcelklehr authored Sep 23, 2024
2 parents a5b2b68 + e469b55 commit 3145dec
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 3145dec

Please sign in to comment.