[chore] Fix type error in post-install

bee19908e7e298e94d4cc7f8ac630498ed188bf1

Cohee <18619528+Cohee1207@users.noreply.github.com>

1 files changed, +1 -1Ignore whitespace
post-install.js+1 -1
@@ -135,7 +135,7 @@ function createDefaultFiles() {
135function getMd5Hash(data) {135function getMd5Hash(data) {
136 return crypto136 return crypto
137 .createHash('md5')137 .createHash('md5')
138 .update(data)138 .update(new Uint8Array(data))
139 .digest('hex');139 .digest('hex');
140}140}
141141