Update GlobalModule.ts

This commit is contained in:
syuilo 2024-09-22 09:18:47 +09:00
parent f924b8715f
commit 675a72c1ba

View file

@ -127,7 +127,7 @@ const $meta: Provider = {
switch (type) {
case 'metaUpdated': {
for (const key in body) {
meta[key] = body[key];
(meta as any)[key] = (body as any)[key];
}
meta.proxyAccount = null; // joinなカラムは通常取ってこないので
break;