fix: prevent quoted toast to be triggered when not quoted

This commit is contained in:
Mar0xy 2023-10-15 18:03:27 +02:00
parent 26cd12f7bf
commit 48c7eeb57e
No known key found for this signature in database
GPG Key ID: 56569BBE47D2C828
3 changed files with 6 additions and 0 deletions

View File

@ -397,6 +397,7 @@ function quote() {
limit: 1,
quote: true,
}).then((res) => {
if (!(res.length > 0)) return;
const el = quoteButton.value as HTMLElement | null | undefined;
if (el && res.length > 0) {
const rect = el.getBoundingClientRect();
@ -419,6 +420,7 @@ function quote() {
limit: 1,
quote: true,
}).then((res) => {
if (!(res.length > 0)) return;
const el = quoteButton.value as HTMLElement | null | undefined;
if (el && res.length > 0) {
const rect = el.getBoundingClientRect();

View File

@ -441,6 +441,7 @@ function quote() {
limit: 1,
quote: true,
}).then((res) => {
if (!(res.length > 0)) return;
const el = quoteButton.value as HTMLElement | null | undefined;
if (el && res.length > 0) {
const rect = el.getBoundingClientRect();
@ -463,6 +464,7 @@ function quote() {
limit: 1,
quote: true,
}).then((res) => {
if (!(res.length > 0)) return;
const el = quoteButton.value as HTMLElement | null | undefined;
if (el && res.length > 0) {
const rect = el.getBoundingClientRect();

View File

@ -326,6 +326,7 @@ function quote() {
limit: 1,
quote: true,
}).then((res) => {
if (!(res.length > 0)) return;
const el = quoteButton.value as HTMLElement | null | undefined;
if (el && res.length > 0) {
const rect = el.getBoundingClientRect();
@ -348,6 +349,7 @@ function quote() {
limit: 1,
quote: true,
}).then((res) => {
if (!(res.length > 0)) return;
const el = quoteButton.value as HTMLElement | null | undefined;
if (el && res.length > 0) {
const rect = el.getBoundingClientRect();