mirror of https://gitlab.com/bashrc2/epicyon
No negative page numbers
parent
3de6c87e51
commit
3fe81d8d81
8
posts.py
8
posts.py
|
@ -2510,6 +2510,8 @@ def createBoxIndexed(recentPostsCache: {},
|
|||
|
||||
pageStr = '?page=true'
|
||||
if pageNumber:
|
||||
if pageNumber < 1:
|
||||
pageNumber = 1
|
||||
try:
|
||||
pageStr = '?page=' + str(pageNumber)
|
||||
except BaseException:
|
||||
|
@ -2517,15 +2519,15 @@ def createBoxIndexed(recentPostsCache: {},
|
|||
boxUrl = httpPrefix + '://' + domain + '/users/' + nickname + '/' + boxname
|
||||
boxHeader = {
|
||||
'@context': 'https://www.w3.org/ns/activitystreams',
|
||||
'first': boxUrl+'?page=true',
|
||||
'first': boxUrl + '?page=true',
|
||||
'id': boxUrl,
|
||||
'last': boxUrl+'?page=true',
|
||||
'last': boxUrl + '?page=true',
|
||||
'totalItems': 0,
|
||||
'type': 'OrderedCollection'
|
||||
}
|
||||
boxItems = {
|
||||
'@context': 'https://www.w3.org/ns/activitystreams',
|
||||
'id': boxUrl+pageStr,
|
||||
'id': boxUrl + pageStr,
|
||||
'orderedItems': [
|
||||
],
|
||||
'partOf': boxUrl,
|
||||
|
|
Loading…
Reference in New Issue