Fix crash on profile with no pacakges

This commit is contained in:
rubenwardy 2021-07-25 17:01:21 +01:00
parent d17bd5580e
commit d7c83f58b9
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ def profile(username):
total_downloads = db.session.query(func.sum(Package.downloads)) \
.select_from(User) \
.join(User.maintained_packages) \
.filter(User.id == user.id, Package.state == PackageState.APPROVED).scalar()
.filter(User.id == user.id, Package.state == PackageState.APPROVED).scalar() or 0
# Process GET or invalid POST
return render_template("users/profile.html", user=user, packages=packages,