mirror of
https://github.com/wallabag/wallabag.git
synced 2025-02-17 03:05:19 +00:00
Fix JPEG images extension
This commit is contained in:
parent
2bef3e4927
commit
f0360bc31f
1 changed files with 2 additions and 2 deletions
|
@ -61,8 +61,8 @@ class DownloadImagesTest extends TestCase
|
||||||
public function singleImage()
|
public function singleImage()
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
['image/pjpeg', 'jpeg'],
|
['image/pjpeg', 'jpg'],
|
||||||
['image/jpeg', 'jpeg'],
|
['image/jpeg', 'jpg'],
|
||||||
['image/png', 'png'],
|
['image/png', 'png'],
|
||||||
['image/gif', 'gif'],
|
['image/gif', 'gif'],
|
||||||
['image/webp', 'webp'],
|
['image/webp', 'webp'],
|
||||||
|
|
Loading…
Reference in a new issue