From c6a769f8f2b5ec19fb6150dc5e73c8a8e756abe3 Mon Sep 17 00:00:00 2001 From: Frisk Date: Sun, 6 Dec 2020 10:55:01 +0100 Subject: [PATCH] Fixes #186 --- src/misc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/misc.py b/src/misc.py index 40ac615..f241806 100644 --- a/src/misc.py +++ b/src/misc.py @@ -107,7 +107,7 @@ def weighted_average(value, weight, new_value): def link_formatter(link): """Formats a link to not embed it""" - return "<" + quote(link.replace(" ", "_"), "/:?") + ">" + return "<" + quote(link.replace(" ", "_"), "/:?=&") + ">" def escape_formatting(data):