Skip to content

Commit

Permalink
Fix: show channel input when selecting remind to channel
Browse files Browse the repository at this point in the history
Closes #10
  • Loading branch information
c0gnize committed Jun 17, 2023
1 parent a74a525 commit b154b84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/classes/ExecuteBlockAction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export class ExecuteBlockAction {

switch (actionId) {
case 'targetType': {
const refMsgId = container.id.split('--')[2];
const refMsgId = container.id.split('--')[2] || '';
const refMsg = await this.read.getMessageReader().getById(refMsgId);

const modal = await reminderCreate({
Expand Down

0 comments on commit b154b84

Please sign in to comment.