brent So I'm not sure if @alfisya is running KDE, but I am. Maybe there's a difference in the stack updates between Budgie and Plasma?
This is the guide I followed last time to downgrade my flatpak for Zoom: https://itsfoss.com/downgrade-flatpak-packages/
Copied here for brevity:
- Get the Application ID of the Package
The first step is to find the Application ID of the package you want to downgrade. You can easily find it by listing the installed packages:
flatpak list --app
Note down the application ID of the package you want to downgrade.
Here, I am going to downgrade the Black Box, so my application ID will be com.raggesilver.BlackBox.
- List previous releases and get the commit code
Once you get the application ID, you’d need to list the previous releases.
You can easily do this by following the given command syntax:
flatpak remote-info --log flathub <Application ID>
Once you find the preferred previous release, copy the commit code as shown above.
- Downgrade the Flatpack package
Once you follow the first two steps, you should have the following:
Application ID of the package.
Commit code of preferred older release.
Now, you have to put them in the following command:
sudo flatpak update --commit=<commit_code> <Application ID>
As I’m downgrading Black Box to the previous release, I’ll be using the following command:
sudo flatpak update --commit=c4ef3f4be655cbe2559451a9ef5977ab28139c54bb5adbd7db812f3482bd0db5 com.raggesilver.BlackBox
And that’s it! Hope it helps!