Moved to AGPLv3, Prefs for codec and audio quality

This commit is contained in:
Shiny Nematoda 2022-08-09 12:46:46 +00:00
parent 60167e45a7
commit 4ac524dcf2
No known key found for this signature in database
GPG key ID: 6506D50F5613A42D
8 changed files with 787 additions and 271 deletions

View file

@ -1,7 +1,9 @@
import DOMPurify from 'dompurify';
export function useSanitize(txt) {
return DOMPurify.sanitize(txt);
return DOMPurify.sanitize(txt, {
ALLOWED_TAGS: ['br'],
});
}
export function useRoute(l) {