mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
core: show configuration dialog when GetConfigurationForSetup fails (#7104)
This commit is contained in:
@@ -835,7 +835,15 @@ namespace Jackett.Common.Indexers
|
||||
|
||||
public override async Task<ConfigurationData> GetConfigurationForSetup()
|
||||
{
|
||||
return await GetConfigurationForSetup(false);
|
||||
try
|
||||
{
|
||||
return await GetConfigurationForSetup(false);
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
logger.Error("Exception in GetConfigurationForSetup (" + ID + "): " + e);
|
||||
return configData;
|
||||
}
|
||||
}
|
||||
|
||||
public async Task<ConfigurationData> GetConfigurationForSetup(bool automaticlogin)
|
||||
|
Reference in New Issue
Block a user