[Google Pixel 8][Beta Timeline] After enabling beta timeline any remote resources not showing #7239

Closed
opened 2026-02-05 12:53:23 +03:00 by OVERLORD · 1 comment
Owner

Originally created by @grzonu on GitHub (Sep 16, 2025).

I have searched the existing issues, both open and closed, to make sure this is not a duplicate report.

  • Yes

The bug

I have 2 google pixel 8 in home. After upgrade to 1.142.0 beta timeline is enabled by default and cannot have access to any remote photos (only local photos is showing), any album and any partner sharing.

Disabling beta timeline resolve problem

The OS that Immich Server is running on

Ubuntu 25.04

Version of Immich Server

v1.142.0

Version of Immich Mobile App

v1.142.0

Platform with the issue

  • Server
  • Web
  • Mobile

Device make and model

Google Pixel 8

Your docker-compose.yml content

i use k8s

kind: Deployment
apiVersion: apps/v1
metadata:
  name: photos
  namespace: nas
  annotations:
    keel.sh/policy: "force"
    keel.sh/match-tag: "true"
    keel.sh/trigger: "poll"
spec:
  replicas: 1
  revisionHistoryLimit: 3
  strategy:
    type: Recreate
  selector:
    matchLabels:
      app: photos
  template:
    metadata:
      name: photos
      labels:
        app: photos
    spec:
      volumes:
        - name: photos-upload
          persistentVolumeClaim:
            claimName: immich-photos
        - name: photos-model
          persistentVolumeClaim:
            claimName: photos-model
        - name: quicksync
          hostPath:
            path: /dev/dri
        - name: localtime
          hostPath:
            path: /etc/localtime
      nodeSelector:
        intel.feature.node.kubernetes.io/gpu: "true"
      containers:
        - name: immich-server
          imagePullPolicy: Always
          image: ghcr.io/immich-app/immich-server:v1.142.0
          resources: {}
          securityContext:
            privileged: true
          env:
            - name: TZ
              value: "Europe/Warsaw"
            - name: DB_USERNAME
              valueFrom:
                secretKeyRef:
                  name: immich-superuser
                  key: user
            - name: DB_PASSWORD
              valueFrom:
                secretKeyRef:
                  name: immich-superuser
                  key: password
            - name: DB_DATABASE_NAME
              valueFrom:
                secretKeyRef:
                  name: immich-superuser
                  key: dbname
            - name: DB_HOSTNAME
              value: "immich-db-rw.nas"
            - name: IMMICH_VERSION
              value: "release"
            - name: REDIS_HOSTNAME
              value: "redis.nas"
            - name: REDIS_PORT
              value: "6379"
            - name: IMMICH_MACHINE_LEARNING_URL
              value: "localhost:3003"
          volumeMounts:
            - mountPath: /usr/src/app/upload
              name: photos-upload
            - mountPath: /etc/localtime
              name: localtime
            - mountPath: /dev/dri
              name: quicksync
          ports:
            - containerPort: 2283
          livenessProbe:
            httpGet:
              path: /api/server/ping
              port: 2283
            initialDelaySeconds: 3
            periodSeconds: 10
          startupProbe:
            httpGet:
              path: /api/server/ping
              port: 2283
            failureThreshold: 30
            periodSeconds: 10
        - name: immich-ml
          imagePullPolicy: Always
          image: ghcr.io/immich-app/immich-machine-learning:v1.142.0-openvino
          resources: {}
          securityContext:
            privileged: true
          env:
            - name: TZ
              value: "Europe/Warsaw"
            - name: DB_USERNAME
              valueFrom:
                secretKeyRef:
                  name: immich-superuser
                  key: user
            - name: DB_PASSWORD
              valueFrom:
                secretKeyRef:
                  name: immich-superuser
                  key: password
            - name: DB_DATABASE_NAME
              valueFrom:
                secretKeyRef:
                  name: immich-superuser
                  key: dbname
            - name: DB_HOSTNAME
              value: "immich-db-rw.nas"
            - name: IMMICH_VERSION
              value: "release"
          volumeMounts:
            - mountPath: /cache
              name: photos-model
            - mountPath: /dev/dri
              name: quicksync
          ports:
            - containerPort: 3003

Your .env content

- name: TZ
              value: "Europe/Warsaw"
            - name: DB_USERNAME
              valueFrom:
                secretKeyRef:
                  name: immich-superuser
                  key: user
            - name: DB_PASSWORD
              valueFrom:
                secretKeyRef:
                  name: immich-superuser
                  key: password
            - name: DB_DATABASE_NAME
              valueFrom:
                secretKeyRef:
                  name: immich-superuser
                  key: dbname
            - name: DB_HOSTNAME
              value: "immich-db-rw.nas"
            - name: IMMICH_VERSION
              value: "release"
            - name: REDIS_HOSTNAME
              value: "redis.nas"
            - name: REDIS_PORT
              value: "6379"
            - name: IMMICH_MACHINE_LEARNING_URL
              value: "localhost:3003"

Reproduction steps

  1. Enable beta timeline
  2. Check if remote photos and albums are showing up
  3. Disable beta timeline
  4. Check again
    ...

Relevant log output


Additional information

No response

Originally created by @grzonu on GitHub (Sep 16, 2025). ### I have searched the existing issues, both open and closed, to make sure this is not a duplicate report. - [x] Yes ### The bug I have 2 google pixel 8 in home. After upgrade to 1.142.0 beta timeline is enabled by default and cannot have access to any remote photos (only local photos is showing), any album and any partner sharing. Disabling beta timeline resolve problem ### The OS that Immich Server is running on Ubuntu 25.04 ### Version of Immich Server v1.142.0 ### Version of Immich Mobile App v1.142.0 ### Platform with the issue - [ ] Server - [ ] Web - [x] Mobile ### Device make and model Google Pixel 8 ### Your docker-compose.yml content ```YAML i use k8s kind: Deployment apiVersion: apps/v1 metadata: name: photos namespace: nas annotations: keel.sh/policy: "force" keel.sh/match-tag: "true" keel.sh/trigger: "poll" spec: replicas: 1 revisionHistoryLimit: 3 strategy: type: Recreate selector: matchLabels: app: photos template: metadata: name: photos labels: app: photos spec: volumes: - name: photos-upload persistentVolumeClaim: claimName: immich-photos - name: photos-model persistentVolumeClaim: claimName: photos-model - name: quicksync hostPath: path: /dev/dri - name: localtime hostPath: path: /etc/localtime nodeSelector: intel.feature.node.kubernetes.io/gpu: "true" containers: - name: immich-server imagePullPolicy: Always image: ghcr.io/immich-app/immich-server:v1.142.0 resources: {} securityContext: privileged: true env: - name: TZ value: "Europe/Warsaw" - name: DB_USERNAME valueFrom: secretKeyRef: name: immich-superuser key: user - name: DB_PASSWORD valueFrom: secretKeyRef: name: immich-superuser key: password - name: DB_DATABASE_NAME valueFrom: secretKeyRef: name: immich-superuser key: dbname - name: DB_HOSTNAME value: "immich-db-rw.nas" - name: IMMICH_VERSION value: "release" - name: REDIS_HOSTNAME value: "redis.nas" - name: REDIS_PORT value: "6379" - name: IMMICH_MACHINE_LEARNING_URL value: "localhost:3003" volumeMounts: - mountPath: /usr/src/app/upload name: photos-upload - mountPath: /etc/localtime name: localtime - mountPath: /dev/dri name: quicksync ports: - containerPort: 2283 livenessProbe: httpGet: path: /api/server/ping port: 2283 initialDelaySeconds: 3 periodSeconds: 10 startupProbe: httpGet: path: /api/server/ping port: 2283 failureThreshold: 30 periodSeconds: 10 - name: immich-ml imagePullPolicy: Always image: ghcr.io/immich-app/immich-machine-learning:v1.142.0-openvino resources: {} securityContext: privileged: true env: - name: TZ value: "Europe/Warsaw" - name: DB_USERNAME valueFrom: secretKeyRef: name: immich-superuser key: user - name: DB_PASSWORD valueFrom: secretKeyRef: name: immich-superuser key: password - name: DB_DATABASE_NAME valueFrom: secretKeyRef: name: immich-superuser key: dbname - name: DB_HOSTNAME value: "immich-db-rw.nas" - name: IMMICH_VERSION value: "release" volumeMounts: - mountPath: /cache name: photos-model - mountPath: /dev/dri name: quicksync ports: - containerPort: 3003 ``` ### Your .env content ```Shell - name: TZ value: "Europe/Warsaw" - name: DB_USERNAME valueFrom: secretKeyRef: name: immich-superuser key: user - name: DB_PASSWORD valueFrom: secretKeyRef: name: immich-superuser key: password - name: DB_DATABASE_NAME valueFrom: secretKeyRef: name: immich-superuser key: dbname - name: DB_HOSTNAME value: "immich-db-rw.nas" - name: IMMICH_VERSION value: "release" - name: REDIS_HOSTNAME value: "redis.nas" - name: REDIS_PORT value: "6379" - name: IMMICH_MACHINE_LEARNING_URL value: "localhost:3003" ``` ### Reproduction steps 1. Enable beta timeline 2. Check if remote photos and albums are showing up 3. Disable beta timeline 4. Check again ... ### Relevant log output ```shell ``` ### Additional information _No response_
Author
Owner

@alextran1502 commented on GitHub (Sep 16, 2025):

Please log out and log back in, it will fix the issue for you. Sorry for the inconvenience

@alextran1502 commented on GitHub (Sep 16, 2025): Please log out and log back in, it will fix the issue for you. Sorry for the inconvenience
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: immich-app/immich#7239