Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/recyclarr/commit/f7bfab065d4ef5b98f281e6aedc5e7fdd54386d5 You should set ROOT_URL correctly, otherwise the web may not work correctly.

fix: Show default value in `config list` help

pull/201/head
Robert Dailey 2 years ago
parent dc93b10e64
commit f7bfab065d

@ -20,7 +20,8 @@ public class ConfigListCommand : AsyncCommand<ConfigListCommand.CliSettings>
public class CliSettings : BaseCommandSettings
{
[CommandArgument(0, "[ListCategory]")]
[EnumDescription<ConfigListCategory>("The type of configuration information to list.")]
[EnumDescription<ConfigListCategory>(
"The type of configuration information to list. If not specified, defaults to 'local'.")]
public ConfigListCategory ListCategory { get; [UsedImplicitly] init; } = ConfigListCategory.Local;
}

Loading…
Cancel
Save