Commit 5935d07d authored by Skye Yu's avatar Skye Yu

fix(schedule info): info variable undifined

parent 2dea3215
......@@ -913,7 +913,7 @@ const commonMessageParser = (msg) => {
Jensen.prototype.sendScheduleInfo = function (infos) {
if (Array.isArray(infos) && infos.length) {
const bodys = [];
for (info of infos) {
for (const info of infos) {
let codes = new Array(33).fill(0);
if (shortcutKeys[info.platform] && shortcutKeys[info.platform][info.os]) {
codes = shortcutKeys[info.platform][info.os];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment