delete QR set command and API

This commit is contained in:
LenAnderson
2023-12-22 12:56:06 +00:00
parent a088fb1746
commit 4fc456dffa
4 changed files with 75 additions and 16 deletions

View File

@ -1,7 +1,6 @@
import { getRequestHeaders } from '../../../../script.js';
import { executeSlashCommands } from '../../../slash-commands.js';
import { debounce } from '../../../utils.js';
import { warn } from '../index.js';
import { debounceAsync, warn } from '../index.js';
import { QuickReply } from './QuickReply.js';
export class QuickReplySet {
@ -44,7 +43,7 @@ export class QuickReplySet {
constructor() {
this.save = debounce(()=>this.performSave(), 200);
this.save = debounceAsync(()=>this.performSave(), 200);
}
init() {