Changes between Initial Version and Version 1 of Ticket #5427, comment 4
- Timestamp:
- Oct 5, 2013, 4:37:49 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #5427, comment 4
initial v1 1 1 With r14136 I did not see consistently torrents starting in "waiting mode/queue" instead of pause after a restart. Frequently queued torrents still ended up paused. Attached patch que_restart.diff fixes this for me. This still does not fix the queue order after a restart. 2 3 There is a very slight change in the patch I attach now (moderated, should show up soon) que_restart-v2.diff which got confused in the original moderation process. Here is the additional change. 4 5 {{{ 6 7 resume.c 8 9 10 @@ -778,7 +778,7 @@ 11 if ((fieldsToLoad & TR_FR_RUN) 12 && tr_variantDictFindBool (&top, TR_KEY_paused, &boolVal)) 13 { 14 - tor->isRunning = !boolVal && !tor->isQueued; 15 + tor->isRunning = !boolVal; 16 fieldsLoaded |= TR_FR_RUN; 17 18 }}}