Description
While using repository categories with passwords, password is prompted every time you hit refresh, but the authentication never succeeds and installation does't progress.
This does not seem to be the case when you store the passwords in the config.xml itself.
Note that passwords for the default repository works as expected. The passwords are not respected only when the repositories are inside the category.
Example config.xml
<?xml version="1.0" encoding="UTF-8"?> <Installer> <Name>app</Name> <Version>1.0.0</Version> <Title>Application</Title> <Publisher>Department</Publisher> <StartMenuDir>Company</StartMenuDir> <InstallerApplicationIcon>app</InstallerApplicationIcon> <InstallerWindowIcon>app</InstallerWindowIcon> <ControlScript>controllerscript.js</ControlScript> <RemoteRepositories> <Repository> <Url>https://example.com/stable</Url> </Repository> </RemoteRepositories> <RepositoryCategories> <RepositoryCategoryDisplayname>Releases</RepositoryCategoryDisplayname> <RemoteRepositories> <DisplayName>Beta</DisplayName> <Tooltip>Beta release for early adopters</Tooltip> <Repository> <Url>https://example.com/beta</Url> </Repository> </RemoteRepositories> </RepositoryCategories> </Installer>