mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
fix: include orphaned packages in metadata output
Signed-off-by: Kevin Morris <kevr@0cost.org>
This commit is contained in:
parent
3ae6323a7c
commit
18f5e142b9
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ class Spec(SpecBase):
|
||||||
base_query = (
|
base_query = (
|
||||||
db.query(Package)
|
db.query(Package)
|
||||||
.join(PackageBase)
|
.join(PackageBase)
|
||||||
.join(User, PackageBase.MaintainerUID == User.ID)
|
.join(User, PackageBase.MaintainerUID == User.ID, isouter=True)
|
||||||
)
|
)
|
||||||
|
|
||||||
# Create an instance of RPC, use it to get entities from
|
# Create an instance of RPC, use it to get entities from
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue