summaryrefslogtreecommitdiffstats
path: root/FedoraClient.php
diff options
context:
space:
mode:
Diffstat (limited to 'FedoraClient.php')
-rw-r--r--FedoraClient.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/FedoraClient.php b/FedoraClient.php
index 1d0ce71..9aec851 100644
--- a/FedoraClient.php
+++ b/FedoraClient.php
@@ -149,7 +149,11 @@ class FedoraPkgdb extends FedoraClient {
$this->logDebug(1,__CLASS__."::".__FUNCTION__."($name) ".$rep['message']);
return false;
}
- return $rep;
+ $branches = array();
+ foreach ($rep['packageListings'] as $pack) {
+ $branches[$pack['collection']['branchname']] = $pack;
+ }
+ return $branches;
}
function getBranch($name, $refresh=false) {