From 48abc4e7e12f5a7bb55e1462989c85da8e606944 Mon Sep 17 00:00:00 2001
From: Arvid Norberg file_error_alert.
is_paused() only returns true if the torrent itself is paused. If the torrent -is not running because the session is paused, this still returns true. To know if a +is not running because the session is paused, this still returns false. To know if a torrent is active or not, you need to inspect both torrent_handle::is_paused() and session::is_paused().
diff --git a/docs/manual.rst b/docs/manual.rst index 7d929769c..1addc2fde 100644 --- a/docs/manual.rst +++ b/docs/manual.rst @@ -1853,7 +1853,7 @@ is currently paused. Torrents may be paused automatically if there is a file err or something similar. See file_error_alert_. ``is_paused()`` only returns true if the torrent itself is paused. If the torrent -is not running because the session is paused, this still returns true. To know if a +is not running because the session is paused, this still returns false. To know if a torrent is active or not, you need to inspect both ``torrent_handle::is_paused()`` and ``session::is_paused()``.