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
If xdg-config is shared with steam, then the flatpak fails to start with the
error below. The issue seems to be that _get_host_xdg_mounts splits the path
into their components and, if the first component is xdg-config (or -data or -cache), then it re-joins all subsequent components, since this only has one
component, there are no other components, to join, which is an error since os.path.join expects at least one component.
If
xdg-config
is shared with steam, then the flatpak fails to start with theerror below. The issue seems to be that
_get_host_xdg_mounts
splits the pathinto their components and, if the first component is
xdg-config
(or-data
or-cache
), then it re-joins all subsequent components, since this only has onecomponent, there are no other components, to join, which is an error since
os.path.join
expects at least one component.The text was updated successfully, but these errors were encountered: