This commit is contained in:
HuanCheng65 2023-09-21 11:11:40 +08:00
parent b7c7ff1cde
commit bb9c9ef974
No known key found for this signature in database
GPG Key ID: 5EC9DD60A32C7360
3 changed files with 3 additions and 4 deletions

View File

@ -891,7 +891,7 @@ interface ITiebaApi {
* @param keyword 关键词 * @param keyword 关键词
*/ */
fun searchForum( fun searchForum(
keyword: String keyword: String,
): Call<SearchForumBean> ): Call<SearchForumBean>
/** /**
@ -906,7 +906,7 @@ interface ITiebaApi {
keyword: String, keyword: String,
page: Int, page: Int,
order: SearchThreadOrder, order: SearchThreadOrder,
filter: SearchThreadFilter filter: SearchThreadFilter,
): Call<SearchThreadBean> ): Call<SearchThreadBean>
/** /**

View File

@ -140,7 +140,6 @@ interface WebTiebaApi {
@retrofit2.http.Header("cookie") cookie: String @retrofit2.http.Header("cookie") cookie: String
): Flow<MyInfoBean> ): Flow<MyInfoBean>
@GET("/mo/q/search/forum") @GET("/mo/q/search/forum")
fun searchForum( fun searchForum(
@Query("word") keyword: String @Query("word") keyword: String

View File

@ -334,7 +334,7 @@ internal fun SubPostsContent(
forumId = fid, forumId = fid,
forumName = forumName, forumName = forumName,
threadId = threadId, threadId = threadId,
postId = postId postId = postId,
) )
) )
} }