Remove getOptionsArray

This commit is contained in:
toasted-nutbread 2019-12-11 20:20:53 -05:00
parent ce51fe7eca
commit 17277a6450
2 changed files with 2 additions and 7 deletions

View File

@ -531,7 +531,7 @@ async function onDictionaryPurge(e) {
dictionarySpinnerShow(true);
await utilDatabasePurge();
for (const options of toIterable(await getOptionsArray())) {
for (const {options} of toIterable((await apiOptionsGetFull()).profiles)) {
options.dictionaries = utilBackgroundIsolate({});
options.general.mainDictionary = '';
}
@ -593,7 +593,7 @@ async function onDictionaryImport(e) {
}
const {result, errors} = await utilDatabaseImport(files[i], updateProgress, importDetails);
for (const options of toIterable(await getOptionsArray())) {
for (const {options} of toIterable((await apiOptionsGetFull()).profiles)) {
const dictionaryOptions = SettingsDictionaryListUI.createDictionaryOptions();
dictionaryOptions.enabled = true;
options.dictionaries[result.title] = dictionaryOptions;

View File

@ -16,11 +16,6 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
async function getOptionsArray() {
const optionsFull = await apiOptionsGetFull();
return optionsFull.profiles.map((profile) => profile.options);
}
async function formRead(options) {
options.general.enable = $('#enable').prop('checked');
options.general.showGuide = $('#show-usage-guide').prop('checked');