mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-14 22:30:30 +05:30
Fixed Iran region has no videos in feed
This commit is contained in:
parent
b07109fec0
commit
65ddf07558
@ -53,10 +53,16 @@ class HomeFragment : BaseFragment() {
|
||||
LocaleHelper
|
||||
.getDetectedCountry(requireContext(), "UK")
|
||||
.uppercase()
|
||||
} else {
|
||||
}
|
||||
else {
|
||||
regionPref
|
||||
}
|
||||
|
||||
// Iran has no trending videos to show!
|
||||
if (region == "IR"){
|
||||
region = "US"
|
||||
}
|
||||
|
||||
binding.recview.layoutManager = GridLayoutManager(view.context, grid.toInt())
|
||||
fetchJson()
|
||||
binding.homeRefresh.isEnabled = true
|
||||
@ -85,6 +91,9 @@ class HomeFragment : BaseFragment() {
|
||||
runOnUiThread {
|
||||
binding.progressBar.visibility = View.GONE
|
||||
binding.recview.adapter = TrendingAdapter(response, childFragmentManager)
|
||||
if (response.isEmpty()){
|
||||
Toast.makeText(context, "No videos found! Change your region and try again!", Toast.LENGTH_SHORT).show()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user