From e98a41f09d6df594a251c0f158176c9dc30f7306 Mon Sep 17 00:00:00 2001 From: familyfriendlymikey Date: Tue, 16 Aug 2022 00:55:35 -0400 Subject: [PATCH] fix config reset --- app/client.imba | 11 ++++++----- package.json | 2 +- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/app/client.imba b/app/client.imba index 8c5132c..08b31c2 100644 --- a/app/client.imba +++ b/app/client.imba @@ -46,7 +46,7 @@ tag app unless global.localStorage.fuzzyhome_visited await add_initial_links! global.localStorage.fuzzyhome_visited = yes - load_config! + await load_config! def add_initial_links await add_link { name: "help", url: "github.com/familyfriendlymikey/fuzzyhome" } @@ -55,11 +55,12 @@ tag app await add_link { name: "3000", url: "localhost:3000" } def validate_config - throw 'config error' unless config..search_engine..url - throw 'config error' unless config..search_engine..frequency - throw 'config error' unless config..search_engine..icon + throw 'config error' unless config..search_engine.hasOwnProperty 'url' + throw 'config error' unless config..search_engine.hasOwnProperty 'icon' + throw 'config error' unless config..search_engine.hasOwnProperty 'frequency' def reset_config + p "resetting config" let url = 'www.google.com/search?q=' let frequency = 0 let icon = await fetch_image_as_base_64 'google.com' @@ -74,7 +75,7 @@ tag app config = JSON.parse(global.localStorage.fuzzyhome_config) validate_config! catch - reset_config! + await reset_config! def err s, e p e diff --git a/package.json b/package.json index ca13e15..0a4601f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fuzzyhome", - "version": "0.1.26", + "version": "0.1.27", "scripts": { "start": "imba run -SMH --baseurl . -w server.imba", "build-app": "rm -rf dist && imba build -SMH --baseurl . server.imba",