diff --git a/js/plugin_juicity/juicity.js b/js/plugin_juicity/juicity.js index e0db98c..d474d5a 100644 --- a/js/plugin_juicity/juicity.js +++ b/js/plugin_juicity/juicity.js @@ -161,6 +161,12 @@ class juicityClass { // 保存时调用(混合编辑后的值) sharedStorageFromProfileCache() { for (var k in this.defaultSharedStorage) { + // 确保不存在 percent encoding + if (k == "pinnedCertchainSha256" && this.defaultSharedStorage[k].isNotBlank()) { + this.sharedStorage[k] = decodeURIComponent(this.common.getKV(k)) + continue + } + this.sharedStorage[k] = this.common.getKV(k); } this._onSharedStorageUpdated();