Fix param conflict

This commit is contained in:
Omar Roth 2018-03-04 11:37:12 -06:00
parent be6ced202c
commit df228c82de

View File

@ -26,7 +26,7 @@ yt_wait = 1.0
Kemal.config.extra_options do |parser|
parser.banner = "Usage: invidious [arguments]"
parser.on("-p SIZE", "--youtube-pool=SIZE", "Number of clients in youtube pool (default: #{yt_pool_size})") do |number|
parser.on("-s SIZE", "--youtube-pool=SIZE", "Number of clients in youtube pool (default: #{yt_pool_size})") do |number|
begin
yt_pool_size = number.to_i
rescue ex