Skip to content

Commit

Permalink
fix(scheduler): Fix unlocking channel not working
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco Crespi committed Dec 20, 2019
1 parent be5baa9 commit b09dfda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/framework/services/Scheduler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export class SchedulerService {
this.scheduledActionTimers = new Map();
this.scheduledActionFunctions = {
[ScheduledActionType.unmute]: (g, a) => this.unmute(g, a),
[ScheduledActionType.unlock]: null
[ScheduledActionType.unlock]: (g, a) => this.unlock(g, a)
};
}

Expand Down

0 comments on commit b09dfda

Please sign in to comment.