Order open subtitle results by download count

This commit is contained in:
Nicolas Pomepuy 2024-11-07 08:11:33 +01:00 committed by Duncan McNamara
parent e2dfaca6ab
commit cb8bd4b48a

View File

@ -16,6 +16,7 @@ interface IOpenSubtitleService {
@Query("moviehash") movieHash: String? = null, @Query("moviehash") movieHash: String? = null,
@Query("query") name: String? = null, @Query("query") name: String? = null,
@Query("season_number") season: Int? = null, @Query("season_number") season: Int? = null,
@Query("order_by") orderBy: String = "download_count",
): OpenSubV1 ): OpenSubV1
@POST("download") @POST("download")