mirror of
https://github.com/friendica/friendica
synced 2024-11-18 06:23:41 +00:00
Simplified call
This commit is contained in:
parent
52e925559e
commit
573050c6ef
1 changed files with 1 additions and 2 deletions
|
@ -291,8 +291,7 @@ class Channel extends BaseModule
|
|||
}
|
||||
|
||||
self::$min_id = $request['min_id'] ?? null;
|
||||
self::$max_id = $request['max_id'] ?? null;
|
||||
self::$max_id = $request['last_created'] ?? self::$max_id;
|
||||
self::$max_id = $request['last_created'] ?? $request['max_id'] ?? null;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue