从安卓客户端的密钥数据库读取密钥 #24

Merged
lsr merged 7 commits from feat/import-from-android into main 2023-06-11 22:39:20 +00:00
Showing only changes of commit 0b82d267c9 - Show all commits

View File

@ -37,7 +37,7 @@ const stagingToProduction = (staging: StagingSettings): ProductionSettings => ({
keys: objectify( keys: objectify(
staging.qmc2.keys, staging.qmc2.keys,
(item) => item.name.normalize(), (item) => item.name.normalize(),
(item) => item.key (item) => item.key.trim()
), ),
}, },
}); });