BetterGifAltText: Decode url encoded jazz

main
Vendicated 2 years ago
parent 3c2bbb698a
commit 9aaa47ea4e
No known key found for this signature in database
GPG Key ID: EC781ADFB93EFFA3

@ -27,7 +27,11 @@ export default definePlugin({
altify(props: any) {
if (props.alt !== "GIF") return;
const url: string = props.original || props.src;
let url: string = props.original || props.src;
try {
url = decodeURI(url);
} catch {}
let name = url
.slice(url.lastIndexOf("/") + 1)
.replace(/\d/g, "") // strip numbers

Loading…
Cancel
Save