Make sure extra options don't override Kemal defaults

This commit is contained in:
Omar Roth 2018-02-05 19:37:09 -06:00
parent e9ee41846c
commit 76c008d319
1 changed files with 3 additions and 3 deletions

View File

@ -22,7 +22,7 @@ require "./helpers"
threads = 10
OptionParser.parse! do |parser|
Kemal.config.extra_options do |parser|
parser.banner = "Usage: invidious [arguments]"
parser.on("-t THREADS", "--threads=THREADS", "Number of threads for crawling (default: 10)") do |number|
begin
@ -111,7 +111,7 @@ end
macro templated(filename)
render "src/views/#{{{filename}}}.ecr", "src/views/layout.ecr"
end
end
get "/" do |env|
top = rank_videos(PG_DB, 120)