mirror of
https://github.com/NiciDieNase/chaosflix
synced 2024-11-25 22:00:16 +00:00
fix codestyle
This commit is contained in:
parent
c9fce1efa3
commit
540a979d8c
2 changed files with 2 additions and 2 deletions
|
@ -28,7 +28,7 @@ class EventsActivity : androidx.fragment.app.FragmentActivity() {
|
|||
public override fun onCreate(savedInstanceState: Bundle?) {
|
||||
super.onCreate(savedInstanceState)
|
||||
val conf = intent.getParcelableExtra<Conference>(CONFERENCE)
|
||||
if( conf != null ){
|
||||
if (conf != null) {
|
||||
conference = conf
|
||||
} else {
|
||||
finish()
|
||||
|
|
|
@ -76,7 +76,7 @@ class ChannelManager(
|
|||
return events.filterNot { activeOrDismissedRecommendations.contains(it.guid) }.map {
|
||||
publishEvent(channelId, it, contentResolver).apply {
|
||||
val sec = this.second
|
||||
if( sec != null ){
|
||||
if (sec != null) {
|
||||
mediaRepository.setRecommendationIdForEvent(this.first, sec, channel.name)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue