Package Details: nextcloud-app-user-oidc 8.1.0-1

Git Clone URL: https://aur.archlinux.org/nextcloud-app-user-oidc.git (read-only, click to copy)
Package Base: nextcloud-app-user-oidc
Description: OIDC connect user backend for Nextcloud
Upstream URL: https://github.com/nextcloud/user_oidc
Licenses: AGPL-3.0-only
Submitter: alerque
Maintainer: alerque
Last Packager: alerque
Votes: 1
Popularity: 0.000000
First Submitted: 2021-05-14 14:53 (UTC)
Last Updated: 2025-10-15 21:37 (UTC)

Latest Comments

wuestengecko commented on 2025-10-14 19:30 (UTC)

Hi! This app currently breaks the Nextcloud settings page with an exception. It seems to be the same error message as reported at https://github.com/nextcloud/user_oidc/issues/512:

  "exception": {
    "Exception": "RuntimeException",
    "Message": "image not found: image:app-dark.svg webroot: serverroot:/usr/share/webapps/nextcloud",
    "Code": 0,
    "Trace": [
      {
        "file": "/usr/share/webapps/nextcloud/apps/user_oidc/lib/Settings/Section.php",
        "line": 47,
        "function": "imagePath",
        "class": "OC\\URLGenerator",
        "type": "->"
      },
      [...]
    ]
  }

The image it's looking for does exist in the repo, but doesn't get packaged properly. However, this can easily be fixed by adding the img subdir to the rsync includes at the end of package():

diff --git a/PKGBUILD b/PKGBUILD
index 98263bf..2ee5a6e 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -70,6 +70,7 @@ package() {
        _appdir="$pkgdir/usr/share/webapps/nextcloud/apps/$_appname"
        rsync -a --mkpath \
                --include='appinfo/***' \
+               --include='img/***' \
                --include='js/***' \
                --include='lib/***' \
                --include='templates/***' \