This is what I’m using to install plex on the raspberry pi ubuntu server
sudo apt install apt-transport-https ca-certificates curl
curl https://downloads.plex.tv/plex-keys/PlexSign.key | sudo apt-key add -
echo deb https://downloads.plex.tv/repo/deb public main | sudo tee /etc/apt/sources.list.d/plexmediaserver.list
sudo apt update
sudo apt install plexmediaserver
However, despite running apt-get update && sudo apt-get upgrade and restarting the server it seems to only update to Version 1.22.3.4523 and keep complaining that an update is available to Version 1.23.1.4528, which link only prompts me for a manual install option.
How do I get the automatic option to actually update?