@@ -192,12 +192,11 @@ def forum(self, forum_id: int):
192192 def forum_threads (self , forum_id : int ):
193193 return [forum_id ], None
194194
195- @endpoint ("forum/{}/since" )
195+ @endpoint ("forum/{}/since/{} " )
196196 def _forum_threads_since (self , forum_id : int , since : int , * , data ):
197197 if not isinstance (since , int ):
198198 raise TypeError ("`since` must be a UNIX timestamp" )
199- data ['timestamp' ] = since
200- return [forum_id ], data
199+ return [forum_id , since ], data
201200
202201 @endpoint ("thread/{}" )
203202 def thread (self , thread_id : int ):
@@ -207,11 +206,11 @@ def thread(self, thread_id: int):
207206 def _thread_posts (self , thread_id : int , * , data = None ):
208207 return [thread_id ], data
209208
210- @endpoint ("thread/{}/since" )
209+ @endpoint ("thread/{}/since/{} " )
211210 def _thread_posts_since (self , thread_id : int , since : int , * , data ):
212211 if not isinstance (since , int ):
213212 raise TypeError ("`since` must be a UNIX timestamp" )
214- return [thread_id ], data
213+ return [thread_id , since ], data
215214
216215 @endpoint ("post/{}" )
217216 def post (self , post_id : int ):
0 commit comments