Actually interpret the file content instead of the name

master
Martin Boonk 2022-01-06 17:27:24 +01:00
parent f13aa4f94a
commit e60b27a5b0
1 changed files with 1 additions and 1 deletions

View File

@ -151,7 +151,7 @@
}
})
*/
require("Storage").list(/^.*\.recorder\.js$/).forEach(fn=>eval(fn)(recorders));
require("Storage").list(/^.*\.recorder\.js$/).forEach(fn=>eval(require("Storage").read(fn))(recorders));
return recorders;
}