mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-05-21 10:50:10 +00:00
- Fix return vs continue in CreateVolumes: using return caused all subsequent volumes to be skipped when nextcloud_aio_nextcloud_datadir or nextcloud_aio_backupdir appeared in the volume list - Fix GetLogs parsing loop: the while loop checked $line before reassigning it so the false sentinel from strtok was always processed, appending a spurious extra empty line to the output - Fix getRegisteredSecret unsafe array access: accessing $this->secrets[$secretId] without isset() can trigger an undefined array key warning; use isset() instead - Remove redundant startTransaction() call in setDomain(): the method called startTransaction() twice without an intervening commitTransaction(), making the second call a no-op that was misleading Agent-Logs-Url: https://github.com/nextcloud/all-in-one/sessions/19424687-dda1-4510-8f70-068c8d3efd41 Co-Authored-By: szaimen <42591237+szaimen@users.noreply.github.com> Signed-off-by: Simon L. <szaimen@e.mail.de>