Make Anilist missing username error more reliable, allow editing anilist username in settings panel
This commit is contained in:
parent
dd6e99877a
commit
51bf392d1b
@ -100,7 +100,7 @@ final class Model
|
||||
$config = $this->container->get('config');
|
||||
$anilistUser = $config->get(['anilist', 'username']);
|
||||
|
||||
if ( ! \is_string($anilistUser))
|
||||
if ( ! (is_string($anilistUser) && $anilistUser !== ''))
|
||||
{
|
||||
throw new InvalidArgumentException('Anilist username is not defined in config');
|
||||
}
|
||||
|
@ -61,7 +61,6 @@ const SETTINGS_MAP = [
|
||||
'type' => 'string',
|
||||
'title' => 'Anilist Username',
|
||||
'default' => '',
|
||||
'readonly' => TRUE,
|
||||
'description' => 'Login username for Anilist account to integrate with',
|
||||
],
|
||||
'access_token' => [
|
||||
|
Loading…
Reference in New Issue
Block a user