Skip to content

Commit

Permalink
use expected download path when using flatpak
Browse files Browse the repository at this point in the history
  • Loading branch information
mhogomchungu committed Aug 19, 2024
1 parent 73ca70d commit f88bb9a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,8 @@ QString settings::downloadLocation()
{
if( utility::platformisFlatPak() ){

return m_appDataPath + "Downloads" ;
//return m_appDataPath + "Downloads" ;
return _downloadLocation() ;
}else{
return _downloadLocation() ;
}
Expand Down

0 comments on commit f88bb9a

Please sign in to comment.