Update AdminSettings, fix avif,heic support

pull/5851/head
Daniel Supernault 8 months ago
parent 3c950a5dad
commit a846930033
No known key found for this signature in database
GPG Key ID: 23740873EE6F76A1

@ -1022,11 +1022,15 @@
}
if(this.mediaTypes.mp4) {
res += 'video/mp4'
res += 'video/mp4,'
}
if(this.mediaTypes.heic) {
res += 'image/heic,'
}
if(this.mediaTypes.avif) {
res += 'image/avif'
res += 'image/avif,'
}
if(res.endsWith(',')) {

Loading…
Cancel
Save