Skip to content

Commit

Permalink
Merge pull request #52 from viiru-/fix-auth-json-schema
Browse files Browse the repository at this point in the history
Convert auth_json from String to Path
  • Loading branch information
impliedchaos authored Mar 7, 2022
2 parents 5732d7e + 294a968 commit cc5e147
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mopidy_ytmusic/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def get_default_config(self):

def get_config_schema(self):
schema = super().get_config_schema()
schema["auth_json"] = config.String(optional=True)
schema["auth_json"] = config.Path(optional=True)
schema["auto_playlist_refresh"] = config.Integer(
minimum=0, optional=True
)
Expand Down

0 comments on commit cc5e147

Please sign in to comment.