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
Profile should have a option to override download privileges on the ID's and permissions panel for worst cases of bad seeding habits to force communication with a user.
The text was updated successfully, but these errors were encountered:
To provide insight on this issue and why it's complicated to fix, it's because the can_download permission is actually saved as a single boolean, yet it's a mix of multiple conditions such as:
has_reached_warning_limit
has_required_ratio
is_banned
is_enabled
is_pruned
can_announce
And it also disables download permissions on regular files too, like .torrent files and subtitle files.
So obviously, when you override the can_announce value, you don't want to be changing the other values. The solution is therefore to have different values for each condition instead of combining them all, otherwise different cron jobs will continually overwrite the value provided.
thanks for your reply Roardom.
Actually I just need to disable only "download .torrent files" permission for selected (edited) user.
how can we do this?
Profile should have a option to override download privileges on the ID's and permissions panel for worst cases of bad seeding habits to force communication with a user.
The text was updated successfully, but these errors were encountered: