Yuriy Tim

Results 6 issues of Yuriy Tim

Patch: ``` Index: feature_album/src/main/kotlin/com/igorwojda/showcase/feature/album/presentation/albumlist/recyclerview/AlbumAdapter.kt IDEA additional info: Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP UTF-8 =================================================================== diff --git a/feature_album/src/main/kotlin/com/igorwojda/showcase/feature/album/presentation/albumlist/recyclerview/AlbumAdapter.kt b/feature_album/src/main/kotlin/com/igorwojda/showcase/feature/album/presentation/albumlist/recyclerview/AlbumAdapter.kt --- a/feature_album/src/main/kotlin/com/igorwojda/showcase/feature/album/presentation/albumlist/recyclerview/AlbumAdapter.kt (revision 7267e7a7e6ca0364a080d269dacbdccb5bcf8dd4) +++ b/feature_album/src/main/kotlin/com/igorwojda/showcase/feature/album/presentation/albumlist/recyclerview/AlbumAdapter.kt (date 1634189766426) @@ -10,7 +10,7 @@ import com.igorwojda.showcase.base.presentation.extension.setOnDebouncedClickListener import...

Build and run app: ``` 2021-10-14 08:41:20.896 17168-17168/com.igorwojda.showcase D/AndroidRuntime: Shutting down VM 2021-10-14 08:41:20.899 17168-17168/com.igorwojda.showcase E/AndroidRuntime: FATAL EXCEPTION: main Process: com.igorwojda.showcase, PID: 17168 java.lang.RuntimeException: Unable to start activity ComponentInfo{com.igorwojda.showcase/com.igorwojda.showcase.app.presentation.NavHostActivity}: java.lang.reflect.InvocationTargetException...

При использовании ViewBindingHolder.kt (это из примера package moxy.sample.ui) в некоторых кейсах получаем: java.lang.AbstractMethodError: abstract method void androidx.lifecycle.DefaultLifecycleObserver.onCreate(androidx.lifecycle.LifecycleOwner) Лечение -- переопределить все методы в DefaultLifecycleObserver : ``` class ViewBindingHolder { ......

In my opinion, the filter should not be like this, it reacts to many matches. `com.github.kotlintelegrambot.dispatcher.handlers.CallbackQueryHandler#checkUpdate` ``` else -> data.contains(callbackData, ignoreCase = true) ``` I fixed it with the following:...

bug

MessageEntity.Type "spoiler" not handled, not known. **Fast solution** Add line in `com.github.kotlintelegrambot.entities.MessageEntity` ``` ... enum class Type { ... @SerializedName("spoiler") SPOILER ... ```

bug

**Expected behavior** edited_message must be handled. **Actual behavior** edited_message not handled. **To Reproduce** just edit an existing message. dispatch { message {} } won't work. **Fast solution** [Added_handling_edited_message_patch.txt](https://github.com/kotlin-telegram-bot/kotlin-telegram-bot/files/8496230/Added_handling_edited_message_patch.txt)

bug