removing swear words

This commit is contained in:
rimthekid 2022-02-16 19:17:27 +04:00
parent 31d7461bd4
commit bbf361332b
5 changed files with 2 additions and 5 deletions

View File

@ -178,7 +178,7 @@ class PlayerFragment : Fragment() {
}
//FullScreen button trigger
view.findViewById<ImageButton>(R.id.fullscreen).setOnClickListener{
//remember to hide everything when new shit added
//remember to hide everything when new thing added
if (!isFullScreen){
with(motionLayout) {
getConstraintSet(R.id.start).constrainHeight(R.id.player, -1)

View File

@ -41,7 +41,7 @@ class Settings : PreferenceFragmentCompat() {
val login = findPreference<Preference>("login_register")
login?.setOnPreferenceClickListener {
val newFragment = LoginDialog()
newFragment.show(childFragmentManager, "fuck")
newFragment.show(childFragmentManager, "Login")
true
}

View File

@ -21,7 +21,6 @@ class ChannelAdapter(private val videoFeed: MutableList<StreamItem>): RecyclerVi
}
fun updateItems(newItems: List<StreamItem>){
videoFeed.addAll(newItems)
//println("suck another dick: "+newItems[0].title)
notifyDataSetChanged()
}

View File

@ -20,7 +20,6 @@ class PlaylistAdapter(private val videoFeed: MutableList<StreamItem>): RecyclerV
}
fun updateItems(newItems: List<StreamItem>){
videoFeed.addAll(newItems)
//println("suck another dick: "+newItems[0].title)
notifyDataSetChanged()
}

View File

@ -30,7 +30,6 @@ class SubscriptionAdapter(private val videoFeed: List<StreamItem>): RecyclerView
i += 10
if(i>videoFeed.size)
i=videoFeed.size
//println("suck another dick: "+newItems[0].title)
notifyDataSetChanged()
}