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 suppose this is tangentially related to #1326 and can be rolled into a PR for that, or one of its own.
When attempting to download some media for the first time, users are presented with a choice of allowed network types, which currently consists of 'wifi only' and 'mobile data and roaming':
When the dialog is created here, setPositiveButton() is called twice which turns 'mobile data' to 'mobile data and roaming'. Changing one to setNeutralButton() (and swapping negative/positive for order) provides users all three options:
The text was updated successfully, but these errors were encountered:
I suppose this is tangentially related to #1326 and can be rolled into a PR for that, or one of its own.
When attempting to download some media for the first time, users are presented with a choice of allowed network types, which currently consists of 'wifi only' and 'mobile data and roaming':
When the dialog is created here,
setPositiveButton()
is called twice which turns 'mobile data' to 'mobile data and roaming'. Changing one tosetNeutralButton()
(and swapping negative/positive for order) provides users all three options:The text was updated successfully, but these errors were encountered: