From 863fa7a410f12fccfc6f3a7c6dcb3f6600787c98 Mon Sep 17 00:00:00 2001 From: duel0213 Date: Sat, 9 Nov 2024 10:05:15 +0900 Subject: [PATCH] IIDX: Fixed lightning model settings save --- iidx@asphyxia/README.md | 1 + iidx@asphyxia/handlers/pc.ts | 4 +--- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/iidx@asphyxia/README.md b/iidx@asphyxia/README.md index cf18f0a..e9f749f 100644 --- a/iidx@asphyxia/README.md +++ b/iidx@asphyxia/README.md @@ -156,4 +156,5 @@ Changelogs - Fixed where MISS COUNT has 0 as default (including score import) - Fixed where unable to import DP scores - Fixed where MISS COUNT doesn't get updated when exscore is same + - Fixed where lightning model settings saved incorrectly - WebUI is now display values of corresponding version diff --git a/iidx@asphyxia/handlers/pc.ts b/iidx@asphyxia/handlers/pc.ts index 6a9aca6..75aafe4 100644 --- a/iidx@asphyxia/handlers/pc.ts +++ b/iidx@asphyxia/handlers/pc.ts @@ -1460,9 +1460,7 @@ export const pcsave: EPR = async (info, data, send) => { version: version, }, { - $set: { - lm_settings, - } + $set: lm_settings, } ); }