Browse Source

Fix reseed

spaghetti 8 years ago
parent
commit
f6e05f2f50
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      sections/torrents/reseed.php

+ 1
- 1
sections/torrents/reseed.php View File

@@ -16,7 +16,7 @@ if (!check_perms('users_mod')) {
16 16
   if (time() - strtotime($LastReseedRequest) < 864000) {
17 17
     error('There was already a re-seed request for this torrent within the past 10 days.');
18 18
   }
19
-  if ($LastActive || time() - strtotime($LastActive) < 345678) {
19
+  if (!$LastActive || time() - strtotime($LastActive) < 345678) {
20 20
     error(403);
21 21
   }
22 22
 }

Loading…
Cancel
Save