Skip to content

Commit

Permalink
[ssu] Fix typo causing failed lookups for generic feature URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
Bernd Wachter committed Jan 5, 2015
1 parent f40daa9 commit 5325fcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libssu/ssufeaturemanager.cpp
Expand Up @@ -73,7 +73,7 @@ QString SsuFeatureManager::url(QString repo, bool rndRepo){

if (featureSettings->contains(repoHeader + repo))
return featureSettings->value(repoHeader + repo).toString();
else if (featureSettings->contains("repositorios/" + repo))
else if (featureSettings->contains("repositories/" + repo))
return featureSettings->value("repositories/" + repo).toString();

return "";
Expand Down

0 comments on commit 5325fcf

Please sign in to comment.