This commit is contained in:
Michael 2020-10-18 04:05:52 +00:00
parent 7db4fa6bf4
commit 90b5421c01
1 changed files with 3 additions and 3 deletions

View File

@ -332,13 +332,13 @@ class Network extends BaseModule
self::$max_id = $get['last_received'] ?? self::$max_id;
break;
case 'commented':
self::$max_id = $_GET['last_commented'] ?? self::$max_id;
self::$max_id = $get['last_commented'] ?? self::$max_id;
break;
case 'created':
self::$max_id = $_GET['last_created'] ?? self::$max_id;
self::$max_id = $get['last_created'] ?? self::$max_id;
break;
case 'uriid':
self::$max_id = $_GET['last_uriid'] ?? self::$max_id;
self::$max_id = $get['last_uriid'] ?? self::$max_id;
break;
}
}