From 9fb89d8f7d77dd70b2493f730d8b224c994a6e98 Mon Sep 17 00:00:00 2001 From: toasted-nutbread Date: Sun, 15 Sep 2019 16:04:26 -0400 Subject: Isolate to background window --- ext/bg/js/settings-profiles.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ext/bg/js') diff --git a/ext/bg/js/settings-profiles.js b/ext/bg/js/settings-profiles.js index 6ff9dda5..624562c6 100644 --- a/ext/bg/js/settings-profiles.js +++ b/ext/bg/js/settings-profiles.js @@ -165,7 +165,7 @@ async function onTargetProfileChanged() { async function onProfileAdd() { const optionsFull = await apiOptionsGetFull(); - const profile = utilIsolate(optionsFull.profiles[currentProfileIndex]); + const profile = utilBackgroundIsolate(optionsFull.profiles[currentProfileIndex]); profile.name = profileOptionsCreateCopyName(profile.name, optionsFull.profiles, 100); optionsFull.profiles.push(profile); currentProfileIndex = optionsFull.profiles.length - 1; @@ -255,8 +255,8 @@ async function onProfileCopyConfirm() { return; } - const profile = utilIsolate(optionsFull.profiles[index].options); - optionsFull.profiles[currentProfileIndex].options = profile; + const profileOptions = utilBackgroundIsolate(optionsFull.profiles[index].options); + optionsFull.profiles[currentProfileIndex].options = profileOptions; await profileOptionsUpdateTarget(optionsFull); await settingsSaveOptions(); -- cgit v1.2.3