You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I installed the software, connected successfully and everything works behind a nginx proxy manager. But after a few hours, when I go back to it, I see the interface for a brief moment, then it disappears, leaving me with a black screen.
Additional context
Error from my chrome :
TypeError: Cannot read properties of null (reading 'images') at KW (Track.tsx:77:12) at ja (react-dom.production.min.js:167:137) at js (react-dom.production.min.js:290:337) at xu (react-dom.production.min.js:280:389) at gu (react-dom.production.min.js:280:320) at yu (react-dom.production.min.js:280:180) at au (react-dom.production.min.js:271:88) at iu (react-dom.production.min.js:268:429) at k (scheduler.production.min.js:13:203) at MessagePort.P (scheduler.production.min.js:14:128)
Track.tsx:77 Uncaught TypeError: Cannot read properties of null (reading 'images') at KW (Track.tsx:77:12) at ja (react-dom.production.min.js:167:137) at js (react-dom.production.min.js:290:337) at xu (react-dom.production.min.js:280:389) at gu (react-dom.production.min.js:280:320) at yu (react-dom.production.min.js:280:180) at au (react-dom.production.min.js:271:88) at iu (react-dom.production.min.js:268:429) at k (scheduler.production.min.js:13:203) at MessagePort.P (scheduler.production.min.js:14:128)
Could you try erasing your database and restarting the backend afterwards. Just trying to see if this is spotify missing data or just the application getting in a weird state. Thanks
Describe the bug
I installed the software, connected successfully and everything works behind a nginx proxy manager. But after a few hours, when I go back to it, I see the interface for a brief moment, then it disappears, leaving me with a black screen.
Additional context
Error from my chrome :
TypeError: Cannot read properties of null (reading 'images') at KW (Track.tsx:77:12) at ja (react-dom.production.min.js:167:137) at js (react-dom.production.min.js:290:337) at xu (react-dom.production.min.js:280:389) at gu (react-dom.production.min.js:280:320) at yu (react-dom.production.min.js:280:180) at au (react-dom.production.min.js:271:88) at iu (react-dom.production.min.js:268:429) at k (scheduler.production.min.js:13:203) at MessagePort.P (scheduler.production.min.js:14:128)
Track.tsx:77 Uncaught TypeError: Cannot read properties of null (reading 'images') at KW (Track.tsx:77:12) at ja (react-dom.production.min.js:167:137) at js (react-dom.production.min.js:290:337) at xu (react-dom.production.min.js:280:389) at gu (react-dom.production.min.js:280:320) at yu (react-dom.production.min.js:280:180) at au (react-dom.production.min.js:271:88) at iu (react-dom.production.min.js:268:429) at k (scheduler.production.min.js:13:203) at MessagePort.P (scheduler.production.min.js:14:128)
I use the stack portainer
`version: "3"
services:
server:
image: yooooomi/your_spotify_server
restart: unless-stopped
ports:
- "${api_port}:8080"
links:
- mongo
depends_on:
- mongo
environment:
- API_ENDPOINT=${api_endpoint}
- CLIENT_ENDPOINT=${client_endpoint}
- SPOTIFY_PUBLIC=${your_spotify_client_id}
- SPOTIFY_SECRET=${your_spotify_secret}
- CORS=all
- TIMEZONE=${TZ}
mongo:
container_name: mongo-your-spotify
image: mongo:4.4.8
restart: unless-stopped
volumes:
- /portainer/Files/AppData/Config/your_spotify/DB:/data/db
web:
image: yooooomi/your_spotify_client
restart: unless-stopped
ports:
- "${client_port}:3000"
environment:
- API_ENDPOINT=${api_endpoint}
`
Screenshots
Thanks
The text was updated successfully, but these errors were encountered: