Skip to content

Commit

Permalink
Merge pull request #11 from c0gnize/fix/10
Browse files Browse the repository at this point in the history
Fix: show channel input when selecting remind to channel
  • Loading branch information
juzser authored Jun 19, 2023
2 parents a74a525 + b154b84 commit f1d00fb
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 f1d00fb

Please sign in to comment.