Adding support for webp images on the front end. Fixes #703

pull/744/head
Dessalines 2020-05-08 14:02:06 -04:00
parent 2db6f35b7c
commit e6717c86ac
1 changed files with 1 additions and 1 deletions

2
ui/src/utils.ts vendored
View File

@ -210,7 +210,7 @@ export function isMod(modIds: Array<number>, creator_id: number): boolean {
}
const imageRegex = new RegExp(
/(http)?s?:?(\/\/[^"']*\.(?:jpg|jpeg|gif|png|svg))/
/(http)?s?:?(\/\/[^"']*\.(?:jpg|jpeg|gif|png|svg|webp))/
);
const videoRegex = new RegExp(`(http)?s?:?(\/\/[^"']*\.(?:mp4))`);