Skip to content

Commit

Permalink
feat: support vertical bing images formats (closes #196)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bnyro authored May 8, 2024
1 parent 79e2c67 commit 5f20695
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/main/java/com/bnyro/wallpaper/api/bi/BiApi.kt
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ class BiApi : Api() {
override val name: String = "Bing"
override val baseUrl: String = "https://www.bing.com"
override val filters: Map<String, List<String>> = mapOf(
"resolution" to listOf("1366x768", "1920x1080", "UHD")
"resolution" to listOf("1080x1920", "768x1366", "1366x768", "1920x1080", "UHD")
)
private val previewResolution = "1366x768"
private val previewResolution = "768x1366"

val api = RetrofitHelper.create(baseUrl, Bing::class.java)

Expand Down

0 comments on commit 5f20695

Please sign in to comment.