Fix wrong var on Discord service
This commit is contained in:
parent
b5284f4b22
commit
0a5f4d6b76
|
|
@ -4454,7 +4454,7 @@ tarteaucitron.services.discord = {
|
||||||
width = x.getAttribute("width"),
|
width = x.getAttribute("width"),
|
||||||
height = x.getAttribute("height")
|
height = x.getAttribute("height")
|
||||||
var widgetURL = "https://discord.com/widget?id=" + id;
|
var widgetURL = "https://discord.com/widget?id=" + id;
|
||||||
return "<iframe width=\"" + width + "\" height=\"" + height + "\"src=\"https://discord.com/widget?id=" + widgetURL + "\"></iframe>";
|
return "<iframe width=\"" + width + "\" height=\"" + height + "\" src=\"" + widgetURL + "\"></iframe>";
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
"fallback": function () {
|
"fallback": function () {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue