From 905d02e9119e2a8e2aab9dbfd3e6e03a229fe0a9 Mon Sep 17 00:00:00 2001 From: Alex Ling Date: Wed, 26 Feb 2020 17:29:34 +0000 Subject: [PATCH] Add queue db path to config.cr --- src/config.cr | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/config.cr b/src/config.cr index eba3e35..7915695 100644 --- a/src/config.cr +++ b/src/config.cr @@ -24,7 +24,9 @@ class Config property mangadex = { "base_url" => "https://mangadex.org", "api_url" => "https://mangadex.org/api", - "download_wait_seconds" => 5 + "download_wait_seconds" => 5, + "download_queue_db_path" => File.expand_path "~/mango/queue.db", + home: true } def self.load(path : String?)