From a0d599ce2f16248b2171d06bb48e83f05a2d5909 Mon Sep 17 00:00:00 2001 From: Tamius Han Date: Wed, 28 Jan 2026 02:05:11 +0100 Subject: [PATCH] add amazon to extconfpatches --- src/ext/conf/ExtConfPatches.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/ext/conf/ExtConfPatches.ts b/src/ext/conf/ExtConfPatches.ts index da62118..6aa5066 100644 --- a/src/ext/conf/ExtConfPatches.ts +++ b/src/ext/conf/ExtConfPatches.ts @@ -479,6 +479,13 @@ const ExtensionConfPatch = Object.freeze([ } } } + }, { + forVersion: '6.3.998', + updateFn: (userOptions: SettingsInterface, defaultOptions: SettingsInterface, logger?) => { + if (!userOptions.sites["www.amazon.com"]) { + userOptions.sites["www.amazon.com"] = _cp(defaultOptions.sites["www.amazon.com"] ); + } + } } ]);