forked from Supositware/Haha-Yes
remove spaces
This commit is contained in:
parent
9d0371f865
commit
4edf84b66f
1 changed files with 3 additions and 3 deletions
|
@ -71,8 +71,8 @@ class messageListener extends Listener {
|
||||||
attach = text.split(/(\[attach:.*?])/);
|
attach = text.split(/(\[attach:.*?])/);
|
||||||
for (let i = 0, l = attach.length; i < l; i++) {
|
for (let i = 0, l = attach.length; i < l; i++) {
|
||||||
if (attach[i].includes('[attach:')) {
|
if (attach[i].includes('[attach:')) {
|
||||||
|
attach = attach[i].replace(' ', '');
|
||||||
attach = attach[i].replace('[attach:', '').slice(0, -1);
|
attach = attach[i].replace('[attach:', '').slice(0, -1);
|
||||||
attach = attach.replace(' ', '');
|
|
||||||
i = attach.length;
|
i = attach.length;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -95,8 +95,8 @@ class messageListener extends Listener {
|
||||||
|
|
||||||
for (let i = 0, l = image.length; i < l; i++) {
|
for (let i = 0, l = image.length; i < l; i++) {
|
||||||
if (image[i].includes('[embedImage:')) {
|
if (image[i].includes('[embedImage:')) {
|
||||||
|
image = image[i].replace(' ', '');
|
||||||
image = image[i].replace('[embedImage:', '').slice(0, -1);
|
image = image[i].replace('[embedImage:', '').slice(0, -1);
|
||||||
image = image.replace(' ', '');
|
|
||||||
text = text.replace(/(\[embedimage:.*?])/g, '');
|
text = text.replace(/(\[embedimage:.*?])/g, '');
|
||||||
i = image.length;
|
i = image.length;
|
||||||
}
|
}
|
||||||
|
@ -108,8 +108,8 @@ class messageListener extends Listener {
|
||||||
|
|
||||||
for (let i = 0, l = thumbnail.length; i < l; i++) {
|
for (let i = 0, l = thumbnail.length; i < l; i++) {
|
||||||
if (thumbnail[i].includes('[embedThumbnail:')) {
|
if (thumbnail[i].includes('[embedThumbnail:')) {
|
||||||
|
thumbnail = thumbnail[i].replace(' ', '');
|
||||||
thumbnail = thumbnail[i].replace('[embedThumbnail:', '').slice(0, -1);
|
thumbnail = thumbnail[i].replace('[embedThumbnail:', '').slice(0, -1);
|
||||||
thumbnail = thumbnail.replace(' ', '');
|
|
||||||
text = text.replace(/(\[embedThumbnail:.*?])/g, '');
|
text = text.replace(/(\[embedThumbnail:.*?])/g, '');
|
||||||
i = thumbnail.length;
|
i = thumbnail.length;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue